mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
626 B
Bash
22 lines
626 B
Bash
# $Id: PKGBUILD 7822 2008-08-04 16:43:10Z tpowa $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=libksba
|
|
pkgver=1.0.3
|
|
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=('91682491186d4ed43fff351aab2f5aad')
|