core/libtasn1/PKGBUILD
2015-01-05 15:32:39 +01:00

34 lines
773 B
Bash

# Maintainer: abveritas[at]chakra-project[dot]org>
pkgname=libtasn1
pkgver=4.2
pkgrel=1
pkgdesc="The ASN.1 library used in GNUTLS"
arch=('x86_64')
license=('GPL3' 'LGPL')
url="http://www.gnu.org/software/libtasn1/"
depends=('glibc' 'texinfo')
install=libtasn1.install
source=("ftp://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz")
md5sums=('414df906df421dee0a5cf7548788d153')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--with-packager=Chakra \
--with-packager-bug-reports="http://chakraos.org/bugs/" \
--with-packager-version=${pkgver}-${pkgrel}
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}