diff options
Diffstat (limited to 'community/vnstat')
-rw-r--r-- | community/vnstat/PKGBUILD | 36 | ||||
-rw-r--r-- | community/vnstat/service | 9 |
2 files changed, 45 insertions, 0 deletions
diff --git a/community/vnstat/PKGBUILD b/community/vnstat/PKGBUILD new file mode 100644 index 000000000..7cc05f52d --- /dev/null +++ b/community/vnstat/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 93779 2013-07-10 07:27:19Z bpiotrowski $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> +# Contributor: Thorsten Töpper <atsutane-tu@freethoughts.de> + +pkgname=vnstat +pkgver=1.11 +pkgrel=7 +pkgdesc="A console-based network traffic monitor" +arch=('i686' 'x86_64') +url="http://humdi.net/vnstat/" +license=('GPL') +depends=('bash') +makedepends=('gd') +optdepends=('gd: image output') +backup=(etc/vnstat.conf) +source=(http://humdi.net/vnstat/$pkgname-$pkgver.tar.gz + service) +md5sums=('a5a113f9176cd61fb954f2ba297f5fdb' + 'df452896729db4a569005f1ebf6b57f4') + +build() { + cd $srcdir/$pkgname-$pkgver + make all SBIN=/usr/bin +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install SBIN=$pkgdir/usr/bin + + install -Dm644 $srcdir/service $pkgdir/usr/lib/systemd/system/vnstat.service + + install -D -m0644 examples/vnstat.cron $pkgdir/usr/share/doc/vnstat/examples/vnstat.cron + install -D -m0755 examples/vnstat.cgi $pkgdir/usr/share/doc/vnstat/examples/vnstat.cgi + sed -i 's#root##' $pkgdir/usr/share/doc/vnstat/examples/vnstat.cron +} diff --git a/community/vnstat/service b/community/vnstat/service new file mode 100644 index 000000000..5c593eb1b --- /dev/null +++ b/community/vnstat/service @@ -0,0 +1,9 @@ +[Unit] +Description=Network traffic monitor + +[Service] +ExecStart=/usr/bin/vnstatd -n +ExecReload=/bin/kill -HUP $MAINPID + +[Install] +WantedBy=multi-user.target |