mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
614 B
Bash
21 lines
614 B
Bash
# $Id: PKGBUILD 7817 2008-08-04 16:36:19Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
pkgname=libassuan
|
|
pkgver=1.0.5
|
|
pkgrel=1
|
|
pkgdesc="Libassuan is the IPC library used by some GnuPG related software"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="ftp://ftp.gnupg.org/gcrypt/libgcrypt"
|
|
depends=('bash')
|
|
makedepends=('pth')
|
|
source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
export CFLAGS="$CFLAGS -fPIC"
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('c2db0974fcce4401f48f3fa41c4edc5a')
|