diff options
Diffstat (limited to 'user/perl-scope-guard/APKBUILD')
-rw-r--r-- | user/perl-scope-guard/APKBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/user/perl-scope-guard/APKBUILD b/user/perl-scope-guard/APKBUILD index 121aa0f5f..a7c047af1 100644 --- a/user/perl-scope-guard/APKBUILD +++ b/user/perl-scope-guard/APKBUILD @@ -1,26 +1,28 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-scope-guard +_pkgreal=Scope-Guard +_author=CHOCOLATE +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.21 pkgrel=0 pkgdesc="Lexically-scoped Perl resource management" url="https://metacpan.org/release/Scope-Guard" arch="noarch" license="Artistic-1.0-Perl" -depends="" -makedepends="perl-dev" +depends="perl" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/C/CH/CHOCOLATE/Scope-Guard-$pkgver.tar.gz" -builddir="$srcdir/Scope-Guard-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } check() { - cd "$builddir" make test } |