diff options
Diffstat (limited to 'user/perl-data-dump')
-rw-r--r-- | user/perl-data-dump/APKBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/user/perl-data-dump/APKBUILD b/user/perl-data-dump/APKBUILD index 5ff3228e7..72f987266 100644 --- a/user/perl-data-dump/APKBUILD +++ b/user/perl-data-dump/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-data-dump +_pkgreal=Data-Dump +_author=GAAS +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.23 pkgrel=0 pkgdesc="Perl module for outputting data structures" @@ -8,23 +12,21 @@ url="https://metacpan.org/pod/Data::Dump" arch="noarch" license="Artistic-1.0-Perl AND GPL-2.0+" depends="perl" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-$pkgver.tar.gz" -builddir="$srcdir/Data-Dump-$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 } |