mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
25 lines
698 B
Bash
25 lines
698 B
Bash
|
# $Id: PKGBUILD 55985 2009-10-17 06:51:24Z andyrtr $
|
||
|
# Maintainer: judd <jvinet@zeroflux.org>
|
||
|
|
||
|
pkgname=libgpg-error
|
||
|
pkgver=1.7
|
||
|
pkgrel=2
|
||
|
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
|
||
|
}
|