1 # Contributor : Geraud Le Falher <daureg@gmail.com>
6 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations."
7 url="http://log4cpp.hora-obscura.de/"
10 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz gcc43.patch)
11 md5sums=('1face50ead0790d1297dfb04bacf273c'
12 '09a6fd8ab6527a417c97c4db5215e558')
14 makedepends=( 'patch' 'make' 'gcc' )
18 cd $startdir/src/$pkgname-$pkgver
19 patch -Np1 -i $srcdir/gcc43.patch
20 ./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa || return 1
22 make DESTDIR=${startdir}/pkg install || return 1
24 # vim: set ft=sh ts=2 sw=2 et: