# $Id: PKGBUILD 55397 2011-09-11 21:15:58Z spupykin $ # Maintainer: Ray Rashif # Contributor: Sergej Pupykin # Contributor: see .contrib pkgname=libconfig pkgver=1.4.8 pkgrel=1 pkgdesc="C/C++ Configuration File Library" arch=('i686' 'x86_64') url="http://hyperrealm.com/libconfig/libconfig.html" license=('LGPL') depends=('gcc-libs' 'texinfo') install=$pkgname.install options=('!libtool' '!emptydirs' 'zipman') source=("http://www.hyperrealm.com/libconfig/$pkgname-$pkgver.tar.gz") md5sums=('36788da452e9fcfc8efb7661ef5d31ef') build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install rm "$pkgdir/usr/share/info/dir" } # vim:set ts=2 sw=2 et: