testing/perl-cps: new APKBUILD

This commit is contained in:
Kiyoshi Aman 2011-11-26 21:24:02 -05:00
parent cebed67a9a
commit c0ea6332ff

38
testing/perl-cps/APKBUILD Normal file
View File

@ -0,0 +1,38 @@
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
pkgname=perl-cps
_pkgreal=CPS
pkgver=0.11
pkgrel=0
pkgdesc="manage flow of control in Continuation-Passing Style"
url="http://search.cpan.org/dist/CPS/"
arch="noarch"
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() {
cd "$_builddir"
perl Build.PL installdirs=vendor || return 1
}
build() {
cd "$_builddir"
export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
./Build && ./Build test
}
package() {
cd "$_builddir"
./Build install destdir="$pkgdir" || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
md5sums="e4f36f053f538a6fa1ea4ed1de038f9e CPS-0.11.tar.gz"