diff options
author | Britney Fransen <brfransen@gmail.com> | 2011-08-06 19:35:32 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2011-08-06 19:35:32 (GMT) |
commit | 5e3fdf55324cfc3834dbf4a91f7e0192e0d748b2 (patch) | |
tree | b7ce8bd149c227faabdab598d9490da2d98eb761 /abs | |
parent | 94fc062c671dff3129b5b951a508eb3bfa6738ed (diff) | |
download | linhes_pkgbuild-5e3fdf55324cfc3834dbf4a91f7e0192e0d748b2.zip linhes_pkgbuild-5e3fdf55324cfc3834dbf4a91f7e0192e0d748b2.tar.gz linhes_pkgbuild-5e3fdf55324cfc3834dbf4a91f7e0192e0d748b2.tar.bz2 |
perl-test-exception: Initial Inclusion. dep of perl-javascript; refs #383
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/perl_modules/perl-test-exception/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/abs/core/perl_modules/perl-test-exception/PKGBUILD b/abs/core/perl_modules/perl-test-exception/PKGBUILD new file mode 100644 index 0000000..ccf2bc6 --- /dev/null +++ b/abs/core/perl_modules/perl-test-exception/PKGBUILD @@ -0,0 +1,26 @@ +# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details +# Maintainer: Charles Mauch <cmauch@gmail.com> + +pkgname=perl-test-exception +pkgver=0.31 +pkgrel=1 +pkgdesc="Perl/CPAN Module Test::Exception : Functions for testing exceptionbased code" +arch=("any") +url="http://search.cpan.org/~adie/" +license=("GPL" "Artistic") +makedepends=("perl-sub-uplevel") +depends=("perl-sub-uplevel") +source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-$pkgver.tar.gz") +md5sums=('adb57ca7614d15e5b307bf5e024b35a8') + +build() { + cd $srcdir/Test-Exception-$pkgver + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} +package() { + cd $srcdir/Test-Exception-$pkgver + make install DESTDIR=$pkgdir + find $pkgdir -name '.packlist' -delete + find $pkgdir -name '*.pod' -delete +} |