opt/rsyslog/Pkgfile

24 lines
645 B
Plaintext
Raw Normal View History

2018-08-12 02:35:27 +02:00
# Description: The rocket-fast system for log processing
# URL: https://www.rsyslog.com/
2018-08-12 02:35:27 +02:00
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: libestr json-c libgcrypt liblogging libfastjson
name=rsyslog
2021-04-21 00:41:00 +02:00
version=8.2104.0
2018-08-12 02:35:27 +02:00
release=1
source=(http://www.rsyslog.com/files/download/$name/$name-$version.tar.gz \
$name.conf rsyslogd.rc)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -d $PKG/var/lib/$name $PKG/etc/$name.d
install -D -m 0644 $SRC/$name.conf \
$PKG/etc/$name.conf
install -D -m 0755 $SRC/rsyslogd.rc \
$PKG/etc/rc.d/rsyslogd
}