diff options
Diffstat (limited to 'user/perl-http-entity-parser')
-rw-r--r-- | user/perl-http-entity-parser/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/user/perl-http-entity-parser/APKBUILD b/user/perl-http-entity-parser/APKBUILD index f42d3f7a5..e4fd7abe7 100644 --- a/user/perl-http-entity-parser/APKBUILD +++ b/user/perl-http-entity-parser/APKBUILD @@ -1,7 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-http-entity-parser -_pkgname=HTTP-Entity-Parser +_pkgreal=HTTP-Entity-Parser +_author=KAZEBURO +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.21 pkgrel=0 pkgdesc="PSGI compliant HTTP entity parser for Perl" @@ -13,22 +16,19 @@ depends="perl-hash-multivalue perl-http-multipartparser perl-json-maybexs checkdepends="perl-http-message" makedepends="perl-dev perl-module-build-tiny" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/K/KA/KAZEBURO/HTTP-Entity-Parser-$pkgver.tar.gz" -builddir="$srcdir/HTTP-Entity-Parser-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" perl Build.PL --destdir="$pkgdir" --prefix="/usr" --installdirs=vendor ./Build } check() { - cd "$builddir" ./Build test } package() { - cd "$builddir" ./Build install destdir="$pkgdir" find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |