diff options
Diffstat (limited to 'user/perl-exception-class/APKBUILD')
-rw-r--r-- | user/perl-exception-class/APKBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/user/perl-exception-class/APKBUILD b/user/perl-exception-class/APKBUILD index a130d6ed1..b57e8d329 100644 --- a/user/perl-exception-class/APKBUILD +++ b/user/perl-exception-class/APKBUILD @@ -1,6 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-exception-class +_pkgreal=Exception-Class +_author=DROLSKY +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.44 pkgrel=0 pkgdesc="Perl module for declaring 'real' exception classes" @@ -10,22 +14,19 @@ license="Artistic-1.0-Perl" depends="perl-class-data-inheritable perl-devel-stacktrace" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Exception-Class-$pkgver.tar.gz" -builddir="$srcdir/Exception-Class-$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 } package() { - cd "$builddir" make DESTDIR="$pkgdir" install find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |