mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 07:37:13 +08:00
29 lines
919 B
Bash
29 lines
919 B
Bash
# $Id: PKGBUILD 80074 2010-05-10 21:13:12Z thomas $
|
|
# Maintainer: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=libgpg-error
|
|
pkgver=1.7
|
|
pkgrel=3
|
|
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=('62c0d09d1e76c5b6da8fff92314c4665')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
# keep static lib for crypsetup
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}/" install || return 1
|
|
|
|
# Move dynamic libraries to /lib
|
|
install -d -m755 "${pkgdir}"/lib/ || return 1
|
|
mv "${pkgdir}"/usr/lib/libgpg-error.so* "${pkgdir}"/lib/ || return 1
|
|
ln -sf /lib/libgpg-error.so "${pkgdir}"/usr/lib/libgpg-error.so || return 1
|
|
}
|