diff options
Diffstat (limited to 'user/perl-file-slurp')
-rw-r--r-- | user/perl-file-slurp/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/user/perl-file-slurp/APKBUILD b/user/perl-file-slurp/APKBUILD index 9364216f1..ca846f49e 100644 --- a/user/perl-file-slurp/APKBUILD +++ b/user/perl-file-slurp/APKBUILD @@ -1,32 +1,32 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-file-slurp +_pkgreal=File-Slurp +_author=CAPOEIRAB +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=9999.28 pkgrel=0 pkgdesc="Simple and efficient file manipulation in Perl" url="https://metacpan.org/release/File-Slurp" arch="noarch" license="Artistic-1.0-Perl" -depends="" +depends="perl" makedepends="perl-dev" subpackages="$pkgname-doc" -#source="https://cpan.metacpan.org/authors/id/U/UR/URI/File-Slurp-$pkgver.tar.gz" -source="https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/File-Slurp-$pkgver.tar.gz" -builddir="$srcdir/File-Slurp-$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 } |