diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 12:27:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 12:27:13 +0000 |
commit | 8df7bc8509279e237796e936a975cfefd979f1c9 (patch) | |
tree | b3093b7be47f566d7d5403a9bcee128a355de424 /testing/perl-sub-install/APKBUILD | |
parent | d565c241b22fdfca172539d0f76830b8f870a2d7 (diff) | |
download | aports-8df7bc8509279e237796e936a975cfefd979f1c9.tar.bz2 aports-8df7bc8509279e237796e936a975cfefd979f1c9.tar.xz |
testing/perl-sub-install: new aport
Sub::Install perl module
http://search.cpan.org/dist/Sub-Install/
Diffstat (limited to 'testing/perl-sub-install/APKBUILD')
-rw-r--r-- | testing/perl-sub-install/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-sub-install/APKBUILD b/testing/perl-sub-install/APKBUILD new file mode 100644 index 0000000000..6dc887b8c4 --- /dev/null +++ b/testing/perl-sub-install/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-sub-install +pkgver=0.925 +pkgrel=0 +pkgdesc="Sub::Install perl module" +url="http://search.cpan.org/dist/Sub-Install/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Sub-Install-$pkgver.tar.gz" + +_builddir="$srcdir"/Sub-Install-$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="694aaec771c42280746a9a6279683263 Sub-Install-0.925.tar.gz" |