core/perl-socket6/PKGBUILD

29 lines
544 B
Bash
Raw Normal View History

2012-05-10 05:48:17 +08:00
# Platform packages for Chakra
pkgname=perl-socket6
pkgver=0.25
pkgrel=1
pkgdesc="A getaddrinfo/getnameinfo support module"
2013-06-08 06:44:07 +08:00
arch=('x86_64')
2012-05-10 05:48:17 +08:00
license=('PerlArtistic' 'GPL')
depends=('perl')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
sha1sums=('4499bd5b5150bd44be79238df348d89ea228f5a6')
2012-05-10 05:48:17 +08:00
build() {
cd Socket6-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
2012-05-10 05:48:17 +08:00
}
check() {
cd Socket6-$pkgver
make test
2012-05-10 05:48:17 +08:00
}
package() {
cd Socket6-$pkgver
make DESTDIR="$pkgdir" install
2012-05-10 05:48:17 +08:00
}