diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-11-01 10:38:57 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-11-01 10:38:57 +0000 |
commit | 2f90419c5292571dcfc3201393d096eda23bc178 (patch) | |
tree | b27ebd9f990bacc4416fedf3f1567527766b08c0 /main/perl-test-without | |
parent | 41f7eaec13f94a90b965b551c1e3eba590fd42bd (diff) | |
download | aports-2f90419c5292571dcfc3201393d096eda23bc178.tar.bz2 aports-2f90419c5292571dcfc3201393d096eda23bc178.tar.xz |
main/perl-test-without: new aport
Diffstat (limited to 'main/perl-test-without')
-rw-r--r-- | main/perl-test-without/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/main/perl-test-without/APKBUILD b/main/perl-test-without/APKBUILD new file mode 100644 index 0000000000..6b4aa7b0b1 --- /dev/null +++ b/main/perl-test-without/APKBUILD @@ -0,0 +1,41 @@ +# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> +pkgname=perl-test-without +_pkgreal="Test-Without" +pkgver=0.10 +pkgrel=0 +pkgdesc="Test::Without perl module" +url="http://search.cpan.org" +arch="noarch" +license="GPL or Artistic" +depends="" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/R/RJ/RJRAY/Test-Without-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgreal-$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="3f9332390cfa0f06688308c48d7d2ac3 Test-Without-0.10.tar.gz" +sha256sums="19467fb7e53e0b32aa829943352cf300d77fff2727f221e5afd2df3b37c8feab Test-Without-0.10.tar.gz" +sha512sums="ce38a625bb8c4d6d9d5bcab7077ca80141e406d45a700743eb1ee006bc7397b4833af3dcd860ac6d8069fd0e4306c6abd9f210e42f6a1cd5301bec22434cbbf3 Test-Without-0.10.tar.gz" |