mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-17 11:42:08 +02:00
60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=monitoring-plugins
|
|
pkgver="2.1.2"
|
|
pkgrel=0
|
|
pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other monitoring applications"
|
|
url="http://www.monitoring-plugins.org"
|
|
arch="all"
|
|
license="GPL3"
|
|
depends=""
|
|
depends_dev=""
|
|
options="suid"
|
|
makedepends="$depends_dev linux-headers libdbi-dev
|
|
openssl-dev mariadb-dev postgresql-dev perl-dev "
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="https://www.monitoring-plugins.org/download/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/monitoring-plugins
|
|
--with-perl \
|
|
--with-openssl \
|
|
--with-pgsql \
|
|
--with-dbi \
|
|
--with-mysql \
|
|
--with-ipv6
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 LEGAL "$pkgdir"/usr/share/licenses/$pkgname/LEGAL
|
|
|
|
for i in ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS CODING ChangeLog \
|
|
FAQ NEWS README REQUIREMENTS SUPPORT THANKS; do
|
|
install -Dm644 $i "$pkgdir"/usr/share/doc/$pkgname/$i
|
|
done
|
|
rm $pkgdir/usr/lib/charset.alias
|
|
}
|
|
|
|
md5sums="4a210f7db012571ea58e214cef74f612 monitoring-plugins-2.1.2.tar.gz"
|
|
sha256sums="76c6b58f0867ab7b6c8c86c7e94fcce7183618f6daab63488990d0355f5600aa monitoring-plugins-2.1.2.tar.gz"
|
|
sha512sums="845eb7636691aa5402119384c3d4256969e959fbc29ef5257c24fc4c21536cad3dade30747f36c9ad998cb37df0f325df66ea679d3d5b96c2993b59a9a325fed monitoring-plugins-2.1.2.tar.gz"
|