updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libassuan1 / PKGBUILD
blobcc3b3e064b33ccdad1b23e41f3ce569288aa2e0c
1 # Contributor: Tom < reztho at archlinux dot us >
2 # Based on the original libassuan 1.0.5 PKGBUILD from Archlinux
4 # Maintainer: Tobias Powalowski <tpowa@archlinux.org>
5 pkgname=libassuan1
6 pkgver=1.0.5
7 pkgrel=2
8 pkgdesc="Libassuan is the IPC library used by some GnuPG related software"
9 arch=(i686 x86_64)
10 license=('GPL')
11 url="ftp://ftp.gnupg.org/gcrypt/libgcrypt"
12 depends=('bash')
13 makedepends=('pth')
14 source=(ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-${pkgver}.tar.bz2)
16 build() {
17      export CFLAGS="${CFLAGS} -fPIC"
18      cd ${srcdir}/libassuan-${pkgver}
19      ./configure --prefix=/usr/share/libassuan1
20      make || return 1
21      make DESTDIR=${pkgdir} install
24 md5sums=('c2db0974fcce4401f48f3fa41c4edc5a')