summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3dbcecb3e918fd4305ad7adb7aa796e5cf99bcdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Applebloom <rat.o.drat@gmail.com>

_pkgname="log4cpp"
pkgname="log4cpp-rc"
pkgver="1.1.2rc1"
pkgrel=1
pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations. Release candidate version."
arch=('i686' 'x86_64')
url="http://log4cpp.sourceforge.net"
license=('LGPL')
provides=($_pkgname)
conflicts=($_pkgname $_pkgname-git)
source=("http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.gz")
md5sums=('1f4c51703fb6cc71379e0a94900577c3')

build() {
  cd "$_pkgname"
  ./configure --prefix=/usr --disable-static --disable-doxygen \
              --disable-dot --without-idsa
  make
}

package() {
  cd "$_pkgname"
  make DESTDIR="$pkgdir" install
}