PKGBUILDs/community/netdata/PKGBUILD

64 lines
2.5 KiB
Bash
Raw Normal View History

2019-08-07 19:24:23 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
2017-03-26 21:34:52 +00:00
# Contributor: SanskritFritz (gmail)
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable LTO
pkgname=netdata
2019-10-20 22:05:53 +00:00
pkgver=1.18.1
2019-10-11 00:28:22 +00:00
pkgrel=1
2017-07-17 23:33:22 +00:00
pkgdesc="Real-time performance monitoring, in the greatest possible detail, over the web"
2018-11-06 13:51:20 +00:00
url="https://github.com/netdata/netdata"
2017-12-18 13:26:20 +00:00
arch=('x86_64')
2017-03-26 21:34:52 +00:00
license=('GPL')
2018-11-09 04:10:03 +00:00
backup=('etc/netdata/netdata.conf')
2019-09-22 01:50:49 +00:00
depends=('libmnl' 'libnetfilter_acct' 'zlib' 'judy' 'libuv' 'json-c' 'libcap' 'lz4')
2017-05-24 12:37:55 +00:00
optdepends=('nodejs: for monitoring named and SNMP devices'
'lm_sensors: for monitoring hardware sensors'
'iproute2: for monitoring Linux QoS'
'python: for most of the external plugins'
'python-psycopg2: for monitoring PostgreSQL databases'
2019-04-12 17:44:15 +00:00
'python-mysqlclient: for monitoring MySQL/MariaDB databases'
2017-05-24 12:37:55 +00:00
'python-requests: for monitoring elasticsearch'
'hddtemp: for monitoring hhd temperature'
'apcupsd: for monitoring APC UPS'
'iw: for monitoring Linux as access point')
2017-03-26 21:34:52 +00:00
install="$pkgname.install"
2019-09-22 01:50:49 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/netdata/netdata/archive/v${pkgver}.tar.gz"
"$pkgname.tmpfiles"
"$pkgname.sysusers")
2019-10-20 22:05:53 +00:00
sha512sums=('fb72f4729e05ab83fe9462e31b10fc40243472ea9f6cbb9421e2ca549810f2f80b28b05e886faa66e15c53b317ee559a3e0fb3d382c36a424dd39fec779918d9'
2017-12-18 13:26:20 +00:00
'3f934ddd1f5248f9e11c29050c023d60b76e4098ec9c8d413bb362d43e9242f767fd58310d966076e8400779af8bda2459afcc314b267fcb9f1c84173e14e313'
'a910809a823ba58ca7bdaa72e8d68427b48f452c1fbb2343fa182ecb0a091a7640e73af24b8ba2fdd90e00aed8ef53b7fccd25cb8f04ca9b9fa6c8e52223ca66')
2017-03-26 21:34:52 +00:00
build() {
2019-08-07 19:24:23 +00:00
cd "$pkgname-$pkgver"
2017-12-18 13:26:20 +00:00
2019-08-07 19:24:23 +00:00
autoreconf -i
2017-12-18 13:26:20 +00:00
./configure \
--prefix="/usr" \
--sbindir="/usr/bin" \
--sysconfdir="/etc" \
--libexecdir="/usr/lib" \
--localstatedir="/var" \
--with-zlib --with-math --with-user=netdata --disable-lto
make
2017-03-26 21:34:52 +00:00
}
package() {
2019-08-07 19:24:23 +00:00
cd "$pkgname-$pkgver"
2017-03-26 21:34:52 +00:00
2017-12-18 13:26:20 +00:00
make DESTDIR="$pkgdir" install
2017-03-26 21:34:52 +00:00
2017-12-18 13:26:20 +00:00
# Remove /var/*, pacman creates it via tmpfiles hook
rm -vrf "${pkgdir}/var"
touch "$pkgdir/etc/netdata/netdata.conf"
chown -R 134:134 "$pkgdir"/etc/netdata
chown -R 134:134 "$pkgdir"/usr/share/netdata/web
2017-03-26 21:34:52 +00:00
2017-12-18 13:26:20 +00:00
install -Dm0644 "system/netdata.service" "$pkgdir/usr/lib/systemd/system/netdata.service"
install -Dm0644 "system/netdata.logrotate" "$pkgdir/etc/logrotate.d/netdata"
install -Dm0644 "${srcdir}/${pkgname}.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
install -Dm0644 "${srcdir}/${pkgname}.sysusers" "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
2017-03-26 21:34:52 +00:00
}