mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
678 B
Bash
22 lines
678 B
Bash
|
pkgname=libgcrypt
|
||
|
pkgver=1.4.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="a general purpose crypto library based on the code used"
|
||
|
arch=(arm)
|
||
|
url="http://www.gnupg.org"
|
||
|
license=('LGPL')
|
||
|
groups=('base')
|
||
|
depends=('libgpg-error>=1.6' 'texinfo')
|
||
|
options=(!libtool)
|
||
|
source=(#ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2
|
||
|
ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgcrypt/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('34105aa927e23c217741966496b97e67')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --disable-padlock-support --disable-static
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
rm -f ${pkgdir}/usr/share/info/dir
|
||
|
}
|