From 548e198e5bf23faf18ece5ef9a5486e11989d0aa Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 31 May 2011 16:13:28 +0000 Subject: testing/perl-test-fatal: new aport Test::Fatal perl module http://search.cpan.org/dist/Test-Fatal/ --- testing/perl-test-fatal/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/perl-test-fatal/APKBUILD diff --git a/testing/perl-test-fatal/APKBUILD b/testing/perl-test-fatal/APKBUILD new file mode 100644 index 00000000000..aecb8a40ab0 --- /dev/null +++ b/testing/perl-test-fatal/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=perl-test-fatal +pkgver=0.005 +pkgrel=0 +pkgdesc="Test::Fatal perl module" +url="http://search.cpan.org/dist/Test-Fatal/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl perl-try-tiny" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Fatal-$pkgver.tar.gz" + +_builddir="$srcdir"/Test-Fatal-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make && make test || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="8fd91391e82ea4290eb0cf8409393485 Test-Fatal-0.005.tar.gz" -- cgit v1.2.3