# $Id: PKGBUILD 98912 2013-10-21 10:46:13Z stativ $ # Maintainer: Lukas Jirkovsky # Contributor : Geraud Le Falher pkgname=log4cpp pkgver=1.1 pkgrel=2 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations." arch=('i686' 'x86_64') url="http://log4cpp.sourceforge.net/" license=('LGPL') depends=('gcc-libs') options=('!libtool') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('b9ef6244baa5e5e435f35e0b9474b35d') build() { cd "$srcdir/$pkgname" ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa make } package() { cd "$srcdir/$pkgname" make DESTDIR="$pkgdir" install } # vim: set ft=sh ts=2 sw=2 et: