diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-04-22 18:11:36 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-04-22 18:11:36 +0000 |
commit | d3624fdede6f187696ba78ee3ab4db383f916e1f (patch) | |
tree | d51ae49ad5dd15a17cca693fd57c8f8615f370d0 /community | |
parent | 2094d852cd04636a3ed2ed70a534cfe3ab8bfd43 (diff) | |
download | aports-d3624fdede6f187696ba78ee3ab4db383f916e1f.tar.bz2 aports-d3624fdede6f187696ba78ee3ab4db383f916e1f.tar.xz |
community/monitoring-plugins: moved from testing
Diffstat (limited to 'community')
-rw-r--r-- | community/monitoring-plugins/APKBUILD | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/community/monitoring-plugins/APKBUILD b/community/monitoring-plugins/APKBUILD new file mode 100644 index 0000000000..11d8d01074 --- /dev/null +++ b/community/monitoring-plugins/APKBUILD @@ -0,0 +1,59 @@ +# 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" |