diff options
Diffstat (limited to 'user/perl-software-license')
-rw-r--r-- | user/perl-software-license/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-software-license/APKBUILD b/user/perl-software-license/APKBUILD index 8e65bc360..a462cd961 100644 --- a/user/perl-software-license/APKBUILD +++ b/user/perl-software-license/APKBUILD @@ -1,31 +1,32 @@ # Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-software-license +_pkgreal=Software-License +_author=LEONT +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.103014 pkgrel=0 pkgdesc="Perl module for generating prefilled license text" url="https://metacpan.org/pod/Software::License" arch="noarch" license="Artistic-1.0-Perl" -depends="perl perl-data-section perl-text-template perl-try-tiny" +depends="perl-data-section perl-text-template perl-try-tiny" makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/L/LE/LEONT/Software-License-$pkgver.tar.gz" -builddir="$srcdir/Software-License-$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 } |