From 62750af0fedc04e43d6393aecd7d3d440a2ea2c5 Mon Sep 17 00:00:00 2001 From: Roberto Oliveira Date: Thu, 23 Nov 2017 17:27:01 +0000 Subject: community/perl-[e-f]*: modernize APKBUILD Changes: - Move tests to check() - Remove return 1 - Rename _builddir to builddir - Add missing default_prepare in prepare() --- community/perl-extutils-depends/APKBUILD | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'community/perl-extutils-depends') diff --git a/community/perl-extutils-depends/APKBUILD b/community/perl-extutils-depends/APKBUILD index 4665b203c0a..32fc5a72667 100644 --- a/community/perl-extutils-depends/APKBUILD +++ b/community/perl-extutils-depends/APKBUILD @@ -4,38 +4,43 @@ pkgname=perl-extutils-depends _pkgreal=ExtUtils-Depends pkgver=0.405 -pkgrel=0 +pkgrel=1 pkgdesc="unknown" url="http://search.cpan.org/dist/ExtUtils-Depends/" arch="noarch" license="GPL PerlArtistic" cpandepends="" -cpanmakedepends=" " +cpanmakedepends="" depends="$cpandepends" makedepends="perl-dev $cpanmakedepends" subpackages="$pkgname-doc" source="http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/$_pkgreal-$pkgver.tar.gz" -_builddir="$srcdir/$_pkgreal-$pkgver" +builddir="$srcdir/$_pkgreal-$pkgver" prepare() { - cd "$_builddir" + default_prepare + + cd "$builddir" export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor } build() { - cd "$_builddir" + cd "$builddir" export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` - make && make test + make +} + +check() { + cd "$builddir" + make test } package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 + cd "$builddir" + make DESTDIR="$pkgdir" install find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } -md5sums="caefbca2f173d0cea3f5ac26b6c08a2c ExtUtils-Depends-0.405.tar.gz" -sha256sums="8ad6401ad7559b03ceda1fe4b191c95f417bdec7c542a984761a4656715a8a2c ExtUtils-Depends-0.405.tar.gz" sha512sums="b9983ad763ff0cb81c899bc24f3152f13c69e608304b6e4446bd07b9b13d039650f3f87544c0bdd29c67246ea2973f04a1ce0fccbffb566fe89fdbe0bb03f11b ExtUtils-Depends-0.405.tar.gz" -- cgit v1.2.3