diff options
Diffstat (limited to '~lukeshu/collectd-systemd/PKGBUILD')
-rw-r--r-- | ~lukeshu/collectd-systemd/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/~lukeshu/collectd-systemd/PKGBUILD b/~lukeshu/collectd-systemd/PKGBUILD index 1b1125d8c..4d49a2004 100644 --- a/~lukeshu/collectd-systemd/PKGBUILD +++ b/~lukeshu/collectd-systemd/PKGBUILD @@ -1,14 +1,14 @@ -# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> +# Maintainer: Luke Shumaker <lukeshu@parabola.nu> pkgname=collectd-systemd pkgver=20170820 pkgdesc="A collectd plugin to read systemd unit and job counts" url="https://git.lukeshu.com/$pkgname.git" -license=('Apache') +license=('GPL') -pkgrel=1 +pkgrel=2 arch=('any') -depends=('collectd' 'systemd' 'python2-dbus') +depends=('collectd' 'systemd' 'python-dbus') source=("https://repo.parabola.nu/other/~lukeshu/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('9a5bf4e8f6f775ae98182a0577c91371') @@ -16,6 +16,11 @@ _config=( prefix=/usr ) +prepare() { + cd "$srcdir/$pkgname-$pkgver" + sed -Ei 's/collectd([a-z])/collectd_\1/g' Makefile +} + build() { cd "$srcdir/$pkgname-$pkgver" make "${_config[@]}" |