27 lines
747 B
Bash
27 lines
747 B
Bash
# Template build file for "vnstat"
|
|
pkgname=vnstat
|
|
version=1.14
|
|
revision=2
|
|
build_style=gnu-makefile
|
|
short_desc="A terminal based network traffic monitor"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
homepage="http://humdi.net/vnstat/"
|
|
license="GPL-2"
|
|
distfiles="http://humdi.net/vnstat/${pkgname}-${version}.tar.gz"
|
|
checksum=f8462a47d85d0890493dc9eaeafbc725ae631aa5b103fb7f8af4ddb2314e8386
|
|
make_install_args="SBIN=${DESTDIR}/usr/bin"
|
|
|
|
conf_files="/etc/vnstat.conf"
|
|
make_dirs="/var/lib/vnstat 0755 root root"
|
|
build_options="systemd"
|
|
|
|
pre_install() {
|
|
sed -e 's,install -s,install ,g' -i Makefile
|
|
}
|
|
post_install() {
|
|
if [ "$build_option_systemd" ]; then
|
|
vinstall ${FILESDIR}/service 644 usr/lib/systemd/system vnstat.service
|
|
fi
|
|
vsv vnstatd
|
|
}
|