diff options
Diffstat (limited to 'user/perl-test-class-most')
-rw-r--r-- | user/perl-test-class-most/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-test-class-most/APKBUILD b/user/perl-test-class-most/APKBUILD index fe48ea68e..f9e407693 100644 --- a/user/perl-test-class-most/APKBUILD +++ b/user/perl-test-class-most/APKBUILD @@ -1,6 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-class-most +_pkgreal=Test-Class-Most +_author=OVID +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.08 pkgrel=0 pkgdesc="Test Perl classes the easy way" @@ -8,24 +12,21 @@ url="https://metacpan.org/release/Test-Class-Most" arch="noarch" license="Artistic-1.0-Perl" depends="perl-test-class perl-test-most" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/O/OV/OVID/Test-Class-Most-$pkgver.tar.gz" -builddir="$srcdir/Test-Class-Most-$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 } |