diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/libtasn1 | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/libtasn1')
-rw-r--r-- | abs/core-testing/libtasn1/PKGBUILD | 26 | ||||
-rw-r--r-- | abs/core-testing/libtasn1/libtasn1.install | 18 |
2 files changed, 0 insertions, 44 deletions
diff --git a/abs/core-testing/libtasn1/PKGBUILD b/abs/core-testing/libtasn1/PKGBUILD deleted file mode 100644 index f43ca76..0000000 --- a/abs/core-testing/libtasn1/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# $Id: PKGBUILD 79844 2010-05-08 11:48:57Z jgc $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> - -pkgname=libtasn1 -pkgver=2.6 -pkgrel=3 -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' '!emptydirs') -install=libtasn1.install -source=(ftp://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz) -md5sums=('d410671e13038324336917ceed7470a5') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ - --with-packager=Archlinux \ - --with-packager-bug-reports="http://bugs.archlinux.org/" \ - --with-packager-version=${pkgver}-${pkgrel} || return 1 - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 -} diff --git a/abs/core-testing/libtasn1/libtasn1.install b/abs/core-testing/libtasn1/libtasn1.install deleted file mode 100644 index 2d1ecc0..0000000 --- a/abs/core-testing/libtasn1/libtasn1.install +++ /dev/null @@ -1,18 +0,0 @@ -info_dir=/usr/share/info -info_files=(libtasn1.info) - -post_install() { - for f in ${info_files[@]}; do - install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - for f in ${info_files[@]}; do - install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null - done -} |