mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 10:24:37 +08:00
31 lines
608 B
Bash
31 lines
608 B
Bash
# maintainer (x86_64): AlmAck <gluca86[at]gmail[dot]org>
|
|
|
|
pkgname=libksba
|
|
pkgver=1.3.2
|
|
pkgrel=1
|
|
pkgdesc="A CMS and X.509 access library"
|
|
arch=(x86_64)
|
|
license=('GPL')
|
|
url="ftp://ftp.gnupg.org/gcrypt/alpha/libksba"
|
|
depends=('bash' 'libgpg-error' 'glibc')
|
|
source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
install=libksba.install
|
|
md5sums=('c3c9a66e22d87fe3ae59865250b8a09c')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|