23 lines
448 B
Plaintext
23 lines
448 B
Plaintext
# Description: The ASN.1 library used by GnuTLS and others
|
|
# URL: https://www.gnu.org/software/libtasn1/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
|
|
|
name=libtasn1
|
|
version=3.5
|
|
release=1
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
|
}
|