desktop/log4c/PKGBUILD
2013-12-14 04:19:05 +00:00

31 lines
761 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# Contributions from: https://aur.archlinux.org/packages/log4c/
# Maintainer: Arthur ÈšiÈeică arthur.titeica/gmail/com
# Contributor: rockerzz <rockerzz@gmail.com>
pkgname=log4c
pkgver=1.2.3
pkgrel=1
pkgdesc="Logging FrameWork for C, as Log4j or Log4Cpp"
url="http://log4c.sourceforge.net/"
arch=('x86_64')
license="LGPL"
depends=('expat')
options=('!libtool')
source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('f35264f40c33dc308cff12193583981d')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr \
--sysconfdir=/etc/log4c
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="${pkgdir}" install
}