diff options
Diffstat (limited to 'testing/libassuan/PKGBUILD')
-rw-r--r-- | testing/libassuan/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/libassuan/PKGBUILD b/testing/libassuan/PKGBUILD new file mode 100644 index 000000000..29aa66536 --- /dev/null +++ b/testing/libassuan/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 131235 2011-07-12 07:35:37Z tpowa $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=libassuan +pkgver=2.0.2 +pkgrel=1 +pkgdesc="A IPC library used by some GnuPG related software" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.gnupg.org/related_software/libassuan" +depends=('libgpg-error') +options=('!libtool') +source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2) +install=libassuan.install + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} +md5sums=('3e7d00fd2ee8a0b9c51ac7616ef3f1ec') |