updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / perl-icontrol / PKGBUILD
bloba2751182f981e7b55b5e83f4d2973ba5dd3bfd50
1 # Maintainer: Simon Perry <pezz [at] sanxion [dot] net>
3 pkgname=perl-icontrol
4 pkgver=0.03
5 pkgrel=1
6 pkgdesc="A Perl interface to the F5 iControl API"
7 depends=('glibc' 'perl>=5.10.0' 'perl-soap-lite')
8 license=('GPL' 'PerlArtistic')
9 url="http://search.cpan.org/dist/iControl/"
10 source=(http://search.cpan.org/CPAN/authors/id/L/LT/LTP/iControl-$pkgver.tar.gz)
11 options=('!emptydirs')
12 arch=(any)
14 build()
16     cd ${srcdir}/iControl-$pkgver
18     perl Makefile.PL INSTALLDIRS=vendor || return 1
19     make || return 1
20     make DESTDIR=${pkgdir} install || return 1
21   
22     # Remove .packlist and perllocal.pod files.
23     find ${pkgdir} -name '.packlist' -delete
24     find ${pkgdir} -name 'perllocal.pod' -delete
27 md5sums=('afe1dab870b2704394d9a7946648b382')