diff options
Diffstat (limited to 'user/perl-sub-identify')
-rw-r--r-- | user/perl-sub-identify/APKBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/user/perl-sub-identify/APKBUILD b/user/perl-sub-identify/APKBUILD index 10e60ed79..9e7adff97 100644 --- a/user/perl-sub-identify/APKBUILD +++ b/user/perl-sub-identify/APKBUILD @@ -1,31 +1,32 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> -# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +# Maintainer: Síle Ekaterin Liszka <sheila@vulpine.house> pkgname=perl-sub-identify +_pkgreal=Sub-Identify +_author=RGARCIA +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.14 pkgrel=0 pkgdesc="Retrieve names of Perl code references" url="https://metacpan.org/release/Sub-Identify" arch="all" -license="Artistic-1.0-Perl" -depends="" +license="Artistic-1.0-Perl OR GPL-1.0+" +depends="perl" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-$pkgver.tar.gz" -builddir="$srcdir/Sub-Identify-$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 } |