blob: 4f0eac9848c37ee6bf130bb64c003f0702e09ac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $Id: PKGBUILD 214232 2014-06-04 13:51:55Z bluewind $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Florian Pritz <bluewind@xinu.at>
pkgname=perl-socket6
pkgver=0.25
pkgrel=2
pkgdesc="A getaddrinfo/getnameinfo support module"
arch=('i686' 'x86_64')
url='http://search.cpan.org/dist/Socket6'
license=('PerlArtistic' 'GPL')
depends=('perl')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
sha1sums=('4499bd5b5150bd44be79238df348d89ea228f5a6')
build() {
cd Socket6-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd Socket6-$pkgver
make test
}
package() {
cd Socket6-$pkgver
make DESTDIR="$pkgdir" install
}
|