summaryrefslogtreecommitdiffstats
path: root/abs/extra/libgpg-error/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra/libgpg-error/PKGBUILD')
-rw-r--r--abs/extra/libgpg-error/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/abs/extra/libgpg-error/PKGBUILD b/abs/extra/libgpg-error/PKGBUILD
deleted file mode 100644
index 1c12394..0000000
--- a/abs/extra/libgpg-error/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 87301 2010-08-12 05:22:29Z andyrtr $
-# Maintainer: judd <jvinet@zeroflux.org>
-
-pkgname=libgpg-error
-pkgver=1.9
-pkgrel=2
-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=('521b98aa9395e7eaf0ef2236233a0796')
-
-
-build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${srcdir}"/${pkgname}-${pkgver}
- make DESTDIR="${pkgdir}/" install
-
- # Move dynamic libraries to /lib
- install -d -m755 "${pkgdir}"/lib/
- mv "${pkgdir}"/usr/lib/libgpg-error.so* "${pkgdir}"/lib/
- ln -sf /lib/libgpg-error.so "${pkgdir}"/usr/lib/libgpg-error.so
-}
-