blob: e3f4444a72a4acb80405d4692b7233ca6c89aeab (
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
32
33
34
35
36
37
38
39
|
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=perl-io-socket-inet6
_pkgreal=IO-Socket-INET6
pkgver=2.69
pkgrel=0
pkgdesc="Object interface for AF_INET|AF_INET6 domain sockets"
url="http://search.cpan.org/dist/IO-Socket-INET6/"
arch="noarch"
license="GPL PerlArtistic"
cpandepends="perl-socket6"
cpanmakedepends=" "
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/$_pkgreal-$pkgver.tar.gz"
_builddir="$srcdir/$_pkgreal-$pkgver"
prepare() {
cd "$_builddir"
export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
perl Build.PL installdirs=vendor || return 1
}
build() {
cd "$_builddir"
export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
./Build ### && ./Build test #no ipv6 in buildozer
}
package() {
cd "$_builddir"
./Build install destdir="$pkgdir" || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
md5sums="12a80a5164a775294a9bf9c812fc3257 IO-Socket-INET6-2.69.tar.gz"
|