summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/libgpg-error/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/libgpg-error/PKGBUILD')
-rw-r--r--abs/core-testing/libgpg-error/PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/abs/core-testing/libgpg-error/PKGBUILD b/abs/core-testing/libgpg-error/PKGBUILD
deleted file mode 100644
index b7083bb..0000000
--- a/abs/core-testing/libgpg-error/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id: PKGBUILD 80074 2010-05-10 21:13:12Z thomas $
-# Maintainer: judd <jvinet@zeroflux.org>
-
-pkgname=libgpg-error
-pkgver=1.7
-pkgrel=3
-pkgdesc="Support library for libgcrypt"
-arch=(i686 x86_64)
-url="http://www.gnupg.org"
-license=('LGPL')
-depends=('glibc' 'sh')
-options=(!libtool)
-source=(#ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2
- ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('62c0d09d1e76c5b6da8fff92314c4665')
-
-build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
- # keep static lib for crypsetup
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR="${pkgdir}/" install || return 1
-
- # Move dynamic libraries to /lib
- install -d -m755 "${pkgdir}"/lib/ || return 1
- mv "${pkgdir}"/usr/lib/libgpg-error.so* "${pkgdir}"/lib/ || return 1
- ln -sf /lib/libgpg-error.so "${pkgdir}"/usr/lib/libgpg-error.so || return 1
-}