blob: e04d58404e3ef42cd8a0157a661b8e69cfd5ed92 (
plain)
1 # Description: An easy to use logging library
2 # URL: http://www.liblogging.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=liblogging
6 version=1.0.5
7 release=1
8 source=(http://download.rsyslog.com/$name/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr \
13 --disable-journal
14 make
15 make DESTDIR=$PKG install
16 }
|