ArchLinux/pkgbuild/perl-net-ip-xs/PKGBUILD

32 lines
828 B
Bash
Raw Normal View History

2011-12-08 11:48:09 +01:00
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
_author=TOMHRR
_perlmod=Net-IP-XS
pkgname=perl-net-ip-xs
2013-07-10 17:42:21 +02:00
pkgver=0.11
2011-12-08 11:48:09 +01:00
pkgrel=1
pkgdesc="XS implementation of Net::IP"
arch=('i686' 'x86_64')
url="http://search.cpan.org/~$_author/$_perlmod-$pkgver/"
license=('GPL' 'PerlArtistic')
2012-11-21 23:47:15 +01:00
depends=('perl>=5.10.0' 'perl-tie-simple' 'perl-math-bigint' 'perl-ip-country' 'perl-io-capture')
2011-12-08 11:48:09 +01:00
options=(!emptydirs)
2012-11-21 23:47:15 +01:00
source=(http://cpan.perl.org/modules/by-authors/id/${_author:0:1}/${_author:0:2}/$_author/$_perlmod-$pkgver.tar.gz)
2013-07-10 17:42:21 +02:00
md5sums=('0696651231b8b1f3629c1428c1157636')
2011-12-08 11:48:09 +01:00
build() {
cd "$srcdir/$_perlmod-$pkgver"
# Install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir/$_perlmod-$pkgver"
make install DESTDIR="$pkgdir/"
}
# vim:set ts=2 sw=2 et: