diff options
Diffstat (limited to 'user/perl-dist-checkconflicts/APKBUILD')
-rw-r--r-- | user/perl-dist-checkconflicts/APKBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/user/perl-dist-checkconflicts/APKBUILD b/user/perl-dist-checkconflicts/APKBUILD index 481277c32..75b3916d5 100644 --- a/user/perl-dist-checkconflicts/APKBUILD +++ b/user/perl-dist-checkconflicts/APKBUILD @@ -1,6 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-dist-checkconflicts +_pkgreal=Dist-CheckConflicts +_author=DOY +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.11 pkgrel=0 pkgdesc="Declare version conflicts for Perl distributions" @@ -11,22 +15,19 @@ depends="perl-module-runtime" makedepends="perl-dev" checkdepends="perl-test-fatal" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DO/DOY/Dist-CheckConflicts-$pkgver.tar.gz" -builddir="$srcdir/Dist-CheckConflicts-$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 } |