package Zabbix2::API

This commit is contained in:
Cedric Girard 2015-05-20 12:52:50 +02:00
commit cdb44d35ac
2 changed files with 62 additions and 0 deletions

22
.SRCINFO Normal file
View File

@ -0,0 +1,22 @@
pkgbase = perl-zabbix2-api
pkgdesc = Access the JSON-RPC API of a Zabbix server
pkgver = 0.012
pkgrel = 1
url = https://metacpan.org/release/Zabbix2-API
arch = any
license = GPL
license = PerlArtistic
depends = perl>=5.10.0
depends = perl-json
depends = perl-log-any
depends = perl-libwww
depends = perl-moo>=1.001000
depends = perl-moo-lax
depends = perl-params-validate
depends = perl-uri
options = !emptydirs
source = http://cpan.metacpan.org/authors/id/F/FG/FGA/Zabbix2-API-0.012.tar.gz
md5sums = 83dc1afca04e1e409f7758dfda1b8955
pkgname = perl-zabbix2-api

40
PKGBUILD Normal file
View File

@ -0,0 +1,40 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
_author=FGA
_perlmod=Zabbix2-API
pkgname=perl-zabbix2-api
pkgver=0.012
pkgrel=1
pkgdesc="Access the JSON-RPC API of a Zabbix server"
arch=('any')
url="https://metacpan.org/release/$_perlmod"
license=('GPL' 'PerlArtistic')
depends=(
'perl>=5.10.0'
'perl-json'
'perl-log-any'
'perl-libwww'
'perl-moo>=1.001000'
'perl-moo-lax'
'perl-params-validate'
'perl-uri'
)
options=(!emptydirs)
source=(http://cpan.metacpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/$_perlmod-$pkgver.tar.gz)
md5sums=('83dc1afca04e1e409f7758dfda1b8955')
build() {
cd "$srcdir/$_perlmod-$pkgver"
# Install module in vendor directories.
perl Build.PL installdirs=vendor destdir="$pkgdir/"
perl Build
}
package() {
cd "$srcdir/$_perlmod-$pkgver"
perl Build install
}
# vim:set ts=2 sw=2 et: