opt/libtasn1/Pkgfile

20 lines
384 B
Plaintext
Raw Normal View History

2018-04-02 08:53:14 +02:00
# Description: The ASN.1 library used by GnuTLS and others
# URL: https://www.gnu.org/software/libtasn1/
2023-08-27 17:34:51 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-04-02 08:53:14 +02:00
name=libtasn1
2022-08-27 16:24:44 +02:00
version=4.19.0
2018-04-02 08:53:14 +02:00
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
2023-08-27 17:34:51 +02:00
cd $name-$version
2018-04-02 08:53:14 +02:00
2023-08-27 17:34:51 +02:00
./configure --prefix=/usr
2018-04-02 08:53:14 +02:00
2023-08-27 17:34:51 +02:00
make
make DESTDIR=$PKG install
2018-04-02 08:53:14 +02:00
2023-08-27 17:34:51 +02:00
rm -r $PKG/usr/share/info
2018-04-02 08:53:14 +02:00
}