diff options
Diffstat (limited to 'user/perl-string-shellquote/APKBUILD')
-rw-r--r-- | user/perl-string-shellquote/APKBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/user/perl-string-shellquote/APKBUILD b/user/perl-string-shellquote/APKBUILD index eb310c686..306ec6e07 100644 --- a/user/perl-string-shellquote/APKBUILD +++ b/user/perl-string-shellquote/APKBUILD @@ -1,31 +1,32 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-string-shellquote +_pkgreal=String-ShellQuote +_author=ROSCH +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.04 pkgrel=0 pkgdesc="Quote strings for passing through to the shell" url="https://metacpan.org/release/String-ShellQuote" arch="noarch" license="Artistic-1.0-Perl" -depends="" -makedepends="perl-dev" +depends="perl" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/R/RO/ROSCH/String-ShellQuote-$pkgver.tar.gz" -builddir="$srcdir/String-ShellQuote-$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 } |