diff options
Diffstat (limited to 'user/perl-lib-relative')
-rw-r--r-- | user/perl-lib-relative/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-lib-relative/APKBUILD b/user/perl-lib-relative/APKBUILD index b717ab88f..5948a2d33 100644 --- a/user/perl-lib-relative/APKBUILD +++ b/user/perl-lib-relative/APKBUILD @@ -1,31 +1,32 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-lib-relative +_pkgreal=lib-relative +_author=DBOOK +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.000 pkgrel=0 pkgdesc="Add paths relative to the current file to Perl @INC" url="https://metacpan.org/release/lib-relative" arch="noarch" license="Artistic-2.0" -depends="" +depends="perl" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DB/DBOOK/lib-relative-$pkgver.tar.gz" -builddir="$srcdir/lib-relative-$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 } |