mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* libgcrypt -> 1.12.1 in updater-libgcrypt-1.12.1 * updater-libgcrypt-1.12.1: Package File Update Run on linux/386 container. * updater-libgcrypt-1.12.1: Package File Update Run on linux/amd64 container. * updater-libgcrypt-1.12.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
1.0 KiB
Ruby
28 lines
1.0 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libgcrypt < Autotools
|
|
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.12.1'
|
|
license 'LGPL-2.1 and MIT'
|
|
compatibility 'all'
|
|
source_url "https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-#{version}.tar.bz2"
|
|
source_sha256 '7df5c08d952ba33f9b6bdabdb06a61a78b2cf62d2122c2d1d03a91a79832aa3c'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'bac670e6614c57a9c467c059c0e5e52f3e12d882f900e0256c202d01a402fd4a',
|
|
armv7l: 'bac670e6614c57a9c467c059c0e5e52f3e12d882f900e0256c202d01a402fd4a',
|
|
i686: 'a5745ee7c26b23c7446d8bb8e0a30c21d1ff13681ccd6b4452d3860b57edcc91',
|
|
x86_64: 'e33abf8a01b97d6bee3cf233eb2a734803942cf914f41d7af998f78365c15a93'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libgpg_error' # R
|
|
|
|
autotools_configure_options '--enable-static \
|
|
--enable-shared'
|
|
run_tests
|
|
end
|