diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libtasn1/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libtasn1/PKGBUILD')
-rw-r--r-- | extra/libtasn1/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/libtasn1/PKGBUILD b/extra/libtasn1/PKGBUILD new file mode 100644 index 000000000..2fa240d94 --- /dev/null +++ b/extra/libtasn1/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 101272 2010-11-28 15:57:11Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: judd <jvinet@zeroflux.org> + +pkgname=libtasn1 +pkgver=2.8 +pkgrel=1 +pkgdesc="The ASN.1 library used in GNUTLS" +arch=(i686 x86_64) +license=('GPL3' 'LGPL') +url="http://www.gnu.org/software/libtasn1/" +depends=('glibc' 'texinfo') +options=('!libtool') +install=libtasn1.install +source=(ftp://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz) +md5sums=('53fd164f8670e55a9964666990fb358f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --with-packager=Archlinux \ + --with-packager-bug-reports="http://bugs.archlinux.org/" \ + --with-packager-version=${pkgver}-${pkgrel} + make + make DESTDIR="${pkgdir}" install + make check +} |