mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
556 B
Bash
20 lines
556 B
Bash
pkgname=libgpg-error
|
|
pkgver=1.6
|
|
pkgrel=1
|
|
pkgdesc="Support library for libgcrypt"
|
|
arch=(arm)
|
|
url="http://www.gnupg.org"
|
|
license=('LGPL')
|
|
groups=('base')
|
|
depends=('glibc')
|
|
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=('f3e9870e213518b407a959f8d29cd554')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|