mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
23 lines
627 B
Bash
23 lines
627 B
Bash
# $Id: PKGBUILD 79062 2010-04-30 05:56:42Z tpowa $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=libksba
|
|
pkgver=1.0.7
|
|
pkgrel=1
|
|
pkgdesc="Libksba is a CMS and X.509 access library"
|
|
arch=(i686 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)
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('eebce521a90600369c33c5fa6b9bbbd8')
|