diff options
Diffstat (limited to 'user/perl-test-filename')
-rw-r--r-- | user/perl-test-filename/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-test-filename/APKBUILD b/user/perl-test-filename/APKBUILD index 5110fe5b5..5307ae2ff 100644 --- a/user/perl-test-filename/APKBUILD +++ b/user/perl-test-filename/APKBUILD @@ -1,31 +1,32 @@ # Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-filename +_pkgreal=Test-Filename +_author=DAGOLDEN +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.03 pkgrel=0 pkgdesc="Perl module for portable filename comparison" url="https://metacpan.org/pod/Test::Filename" arch="noarch" license="Apache-2.0" -depends="perl perl-path-tiny perl-try-tiny" +depends="perl-path-tiny perl-try-tiny" makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Test-Filename-$pkgver.tar.gz" -builddir="$srcdir/Test-Filename-$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 } |