2010-03-13 23:25:19 +08:00
|
|
|
# $Id: PKGBUILD 55985 2009-10-17 06:51:24Z andyrtr $
|
|
|
|
# Maintainer: judd <jvinet@zeroflux.org>
|
|
|
|
|
|
|
|
pkgname=libgpg-error
|
|
|
|
pkgver=1.7
|
2010-03-22 04:46:45 +08:00
|
|
|
pkgrel=3
|
2010-03-13 23:25:19 +08:00
|
|
|
pkgdesc="Support library for libgcrypt"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url="http://www.gnupg.org"
|
|
|
|
license=('LGPL')
|
|
|
|
groups=('base')
|
|
|
|
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 ${startdir}/src/${pkgname}-${pkgver}
|
|
|
|
# keep static lib for crypsetup
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${startdir}/pkg install
|
|
|
|
}
|