diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-12 10:26:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-12 10:26:47 +0000 |
commit | a9426ef638abd22a689357cf301e90ea3afbc185 (patch) | |
tree | c81c27825826e72efe351f13c8a6425917272d1d /main/perl-test-refcount | |
parent | 4056a7ae2ae7e3c5f21eb23a9b39a8cae6a169b7 (diff) | |
download | aports-a9426ef638abd22a689357cf301e90ea3afbc185.tar.bz2 aports-a9426ef638abd22a689357cf301e90ea3afbc185.tar.xz |
main/perl-test-refcount: moved to main
Diffstat (limited to 'main/perl-test-refcount')
-rw-r--r-- | main/perl-test-refcount/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/main/perl-test-refcount/APKBUILD b/main/perl-test-refcount/APKBUILD new file mode 100644 index 0000000000..d4d71f1e7f --- /dev/null +++ b/main/perl-test-refcount/APKBUILD @@ -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-test-refcount +_pkgreal=Test-Refcount +pkgver=0.07 +pkgrel=0 +pkgdesc="assert reference counts on objects" +url="http://search.cpan.org/dist/Test-Refcount/" +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="0a78c2f25e91c27baf0f71118a970245 Test-Refcount-0.07.tar.gz" |