diff options
Diffstat (limited to 'testing/perl-scope-guard')
-rw-r--r-- | testing/perl-scope-guard/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-scope-guard/APKBUILD b/testing/perl-scope-guard/APKBUILD new file mode 100644 index 0000000000..bd47064304 --- /dev/null +++ b/testing/perl-scope-guard/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-scope-guard +pkgver=0.20 +pkgrel=0 +pkgdesc="Scope::Guard perl module" +url="http://search.cpan.org/dist/Scope-Guard/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/C/CH/CHOCOLATE/Scope-Guard-$pkgver.tar.gz" + +_builddir="$srcdir"/Scope-Guard-$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="495d5ae16a2df8128fd068c386c9d4ac Scope-Guard-0.20.tar.gz" |