mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* libtasn1 => 4.20.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libtasn1: Build Run on linux/386. * updater-libtasn1: Build Run on linux/arm/v7. * updater-libtasn1: Build Run on linux/amd64. * updater-libtasn1: Package File Update Run on linux/386 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libtasn1 < Autotools
|
|
description 'Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages.'
|
|
homepage 'https://www.gnu.org/software/libtasn1/'
|
|
version '4.20.0'
|
|
license 'GPL-3 and LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url "https://ftpmirror.gnu.org/libtasn1/libtasn1-#{version}.tar.gz"
|
|
source_sha256 '92e0e3bd4c02d4aeee76036b2ddd83f0c732ba4cda5cb71d583272b23587a76c'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'bbc90c7aeddcbf2ec97ebb5d633d1555d6d2bb42a9170be8398f96c437d1ee23',
|
|
armv7l: 'bbc90c7aeddcbf2ec97ebb5d633d1555d6d2bb42a9170be8398f96c437d1ee23',
|
|
i686: '3a420af07e96de2da8200f4c6a85384de0484a552ade20bb86086ce5ad1a2f08',
|
|
x86_64: 'fc012646fadabff15bacccd484132156022d47f2b068f310df491d28d18ba684'
|
|
})
|
|
|
|
# bison, diff, cmp are required at compile-time
|
|
depends_on 'bison' => :build
|
|
depends_on 'diffutils' => :build
|
|
depends_on 'glibc' # R
|
|
|
|
autotools_configure_options '--enable-shared \
|
|
--enable-static \
|
|
--with-pic'
|
|
end
|