blob: 327c9a63bca426c81b0d07185f513fd36f23bc51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libtasn1
pkgver=4.16.0
pkgrel=0
pkgdesc="The ASN.1 library used in GNUTLS"
url="https://www.gnu.org/software/gnutls/"
arch="all"
license="LGPL-2.1-or-later"
makedepends="texinfo"
checkdepends="diffutils"
subpackages="$pkgname-dev $pkgname-doc $pkgname-progs"
source="https://ftp.gnu.org/gnu/libtasn1/libtasn1-$pkgver.tar.gz"
# secfixes:
# 4.14-r0:
# - CVE-2018-1000654
# 4.13-r0:
# - CVE-2018-6003
# 4.12-r1:
# - CVE-2017-10790
build() {
CFLAGS="-Wno-error=inline" ./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--disable-static
make -j1
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
progs() {
license="GPL-3.0-only"
pkgdesc="$pkgdesc (utilities)"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/bin
}
sha512sums="b356249535d5d592f9b59de39d21e26dd0f3f00ea47c9cef292cdd878042ea41ecbb7c8d2f02ac5839f5210092fe92a25acd343260ddf644887b031b167c2e71 libtasn1-4.16.0.tar.gz"
|