blob: daaaff5efbc7f4bec45f7b53cf8ed72fa6157c5d (
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
40
41
42
43
44
45
46
47
|
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=perl-scalar-list-utils
_pkgreal=Scalar-List-Utils
pkgver=1.47
pkgrel=1
pkgdesc="Common Scalar and List utility subroutines"
url="http://search.cpan.org/dist/Scalar-List-Utils/"
arch="all"
license="GPL PerlArtistic"
cpandepends=""
cpanmakedepends=""
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/$_pkgreal-$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$pkgver"
prepare() {
default_prepare || return 1
cd "$builddir"
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
}
build() {
cd "$builddir"
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
make && make test
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
doc() {
default_doc
replaces="perl-doc"
}
md5sums="caf338334a64cd23ade695ba1561252c Scalar-List-Utils-1.47.tar.gz"
sha256sums="c483347372a96972d61fd186522a9dafc2da899ef2951964513b7e8efb37efe1 Scalar-List-Utils-1.47.tar.gz"
sha512sums="526d248a794bede2b9bda8cff73a10a116b16578fd646db69c88456aa432d84ced33e5024e632331a992412d0c05fed19846873554a731bbd1eaa3d9e6124c38 Scalar-List-Utils-1.47.tar.gz"
|