updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / log4cpp / PKGBUILD
blobb430917ac57fb813201929862cf95e52476defa4
1 # Contributor : Geraud Le Falher <daureg@gmail.com>
3 pkgname=log4cpp
4 pkgver=1.0
5 pkgrel=5
6 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations."
7 url="http://log4cpp.hora-obscura.de/"
8 license=('LGPL')
9 arch=('i686' 'x86_64')
10 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz gcc43.patch)
11 md5sums=('1face50ead0790d1297dfb04bacf273c'
12          '09a6fd8ab6527a417c97c4db5215e558')
13 depends=('gcc-libs')
14 makedepends=( 'patch' 'make' 'gcc' )
15 options=('!libtool')
17 build() {
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
21         make || return 1
22         make DESTDIR=${startdir}/pkg install || return 1
24 # vim: set ft=sh ts=2 sw=2 et: