diff options
Diffstat (limited to 'user/perl-b-hooks-op-check/APKBUILD')
-rw-r--r-- | user/perl-b-hooks-op-check/APKBUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/user/perl-b-hooks-op-check/APKBUILD b/user/perl-b-hooks-op-check/APKBUILD index 93b27f9dd..f5ae7028e 100644 --- a/user/perl-b-hooks-op-check/APKBUILD +++ b/user/perl-b-hooks-op-check/APKBUILD @@ -1,31 +1,32 @@ -# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> -# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +# Contributor: Síle Ekaterin Liszka <sheila@vulpine.house> +# Maintainer: Síle Ekaterin Liszka <sheila@vulpine.house> pkgname=perl-b-hooks-op-check +_pkgreal=B-Hooks-OP-Check +_author=ETHER +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.22 pkgrel=0 pkgdesc="Perl module for wrapping OP check callbacks in XS" url="https://metacpan.org/pod/B::Hooks::OP::Check" arch="all" -license="Artistic-1.0-Perl" -depends="" +license="Artistic-1.0-Perl OR GPL-1.0+" +depends="perl" makedepends="perl-dev perl-extutils-depends" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/E/ET/ETHER/B-Hooks-OP-Check-$pkgver.tar.gz" -builddir="$srcdir/B-Hooks-OP-Check-$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 } |