diff options
Diffstat (limited to 'user/perl-module-runtime/APKBUILD')
-rw-r--r-- | user/perl-module-runtime/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/user/perl-module-runtime/APKBUILD b/user/perl-module-runtime/APKBUILD index 0430740c3..fc79c7f95 100644 --- a/user/perl-module-runtime/APKBUILD +++ b/user/perl-module-runtime/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Dan Theisen <djt@hxx.in> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-module-runtime +_pkgreal=Module-Runtime +_author=ZEFRAM +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.016 pkgrel=0 pkgdesc="Runtime module handling" @@ -10,24 +14,20 @@ license="Artistic-1.0-Perl AND GPL-2.0" depends="perl" makedepends="perl-dev" checkdepends="perl-test-pod perl-test-pod-coverage" -install="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-$pkgver.tar.gz" -builddir="$srcdir/Module-Runtime-$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 } |