diff options
Diffstat (limited to 'user/perl-dist-checkconflicts')
-rw-r--r-- | user/perl-dist-checkconflicts/APKBUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/user/perl-dist-checkconflicts/APKBUILD b/user/perl-dist-checkconflicts/APKBUILD index 481277c32..97d498273 100644 --- a/user/perl-dist-checkconflicts/APKBUILD +++ b/user/perl-dist-checkconflicts/APKBUILD @@ -1,32 +1,33 @@ # 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-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" url="https://metacpan.org/release/Dist-CheckConflicts" arch="noarch" -license="Artistic-1.0-Perl" -depends="perl-module-runtime" -makedepends="perl-dev" +license="Artistic-1.0-Perl OR GPL-1.0+" +depends="perl perl-module-runtime" checkdepends="perl-test-fatal" +makedepends="perl-dev" 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 } |