From 7ce8f9f4eccbf0731ea5593beac115ba8d9403cd Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Sun, 23 Jun 2024 13:12:17 +0000 Subject: [PATCH] community/alien: upgrade to 8.95.7 also, bring the call to Makefile.PL more in line with apkbuild-cpan template 4, so `find -delete` is no longer needed --- community/alien/APKBUILD | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/community/alien/APKBUILD b/community/alien/APKBUILD index cae8acac8b4..5ea7a4fcb42 100644 --- a/community/alien/APKBUILD +++ b/community/alien/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Francesco Colista # Maintainer: Francesco Colista pkgname=alien -pkgver=8.95.6 +pkgver=8.95.7 pkgrel=0 pkgdesc="Alien is a program that converts between the rpm, dpkg, stampede slp, and slackware tgz file formats" url="http://joeyh.name/code/alien" @@ -10,16 +10,20 @@ license="GPL-2.0-only" depends="perl" subpackages="$pkgname-doc" source="https://deb.debian.org/debian/pool/main/a/alien/alien_$pkgver.tar.xz" +builddir="$srcdir/$pkgname" build() { - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + PERL_MM_USE_DEFAULT=1 perl Makefile.PL \ + INSTALLDIRS=vendor \ + NO_PACKLIST=1 \ + NO_PERLLOCAL=1 + make } package() { make DESTDIR="$pkgdir" install - find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } sha512sums=" -29ed80f249b38b47a26ee9d058d057be8728d18d771c1f847919f296d2c8359fcc33a32912749f2ed77b1214e61f101b75960a82cbd3d76bbb7f205acfd4f152 alien_8.95.6.tar.xz +5528ee66117d5429b2021350c11fcaa1e831c8f46dfb661c7ec42e2840c67d7fa488dabb7361e91fc034ba6b8a970938ec08e74ab619747e03acb577213d27f8 alien_8.95.7.tar.xz "