Commit 5c358fd6 authored by Casey Strouse's avatar Casey Strouse Committed by GitHub

Merge pull request #4167 from uberhacker/update-libgcrypt-package

Update libgcrypt from 1.8.5 to 1.8.6
parents f0febe0a 19344734
......@@ -3,22 +3,22 @@ require 'package'
class Libgcrypt < Package
description 'Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG.'
homepage 'https://www.gnupg.org/related_software/libgcrypt/index.html'
version '1.8.5'
version '1.8.6'
compatibility 'all'
source_url 'https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.5.tar.bz2'
source_sha256 '3b4a2a94cb637eff5bdebbcaf46f4d95c4f25206f459809339cdada0eb577ac3'
source_url 'https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.6.tar.bz2'
source_sha256 '0cba2700617b99fc33864a0c16b1fa7fdf9781d9ed3509f5d767178e5fd7b975'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.5-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.5-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.5-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.5-chromeos-x86_64.tar.xz',
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.6-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.6-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.6-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/libgcrypt-1.8.6-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '94018f0c7542235ef7fba73a4fbcd67e415f1c5f9cc6116fa2075638c472448c',
armv7l: '94018f0c7542235ef7fba73a4fbcd67e415f1c5f9cc6116fa2075638c472448c',
i686: '7c7a857f964a2af40a45ae63d1241e40f03bbf917e609febd222e095db22c80e',
x86_64: '6c0cbecc94b4cd9615844e45733a0ef92f197ec6ab7a41d1733a19d168db3a3f',
aarch64: '1536f3b492773f7145d3f68893e4a4b0f0b6f3c64ac1141d563c243146836988',
armv7l: '1536f3b492773f7145d3f68893e4a4b0f0b6f3c64ac1141d563c243146836988',
i686: 'd569a14b5ecf2b62895a121e7cd271af4d103375a1f086359d7b5ba7b5dff930',
x86_64: '50794006ecb92d0e54be1a27a56f0e11be173dee3d98623b46f737541104b1a1',
})
depends_on 'libgpgerror'
......@@ -27,14 +27,9 @@ class Libgcrypt < Package
case ARCH
when 'aarch64'
ENV['gcry_cv_gcc_arm_platform_as_ok'] = 'no'
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-asm'
system "./configure #{CREW_OPTIONS} --disable-asm"
else
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}"
system "./configure #{CREW_OPTIONS}"
end
system 'make'
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment