# Description: An easy to use logging library
# URL: http://www.liblogging.org/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: python3-docutils

name=liblogging
version=1.0.8
release=1
source=(https://github.com/rsyslog/liblogging/archive/v$version/$name-$version.tar.gz)

build() {
    cd $name-$version
    autoreconf -if
    ./configure --prefix=/usr \
        --disable-journal
    make
    make DESTDIR=$PKG install
}
