diff options
Diffstat (limited to 'system/perl-json-maybexs/APKBUILD')
-rw-r--r-- | system/perl-json-maybexs/APKBUILD | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/system/perl-json-maybexs/APKBUILD b/system/perl-json-maybexs/APKBUILD index 92a37e687..760b09e19 100644 --- a/system/perl-json-maybexs/APKBUILD +++ b/system/perl-json-maybexs/APKBUILD @@ -3,39 +3,32 @@ # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-json-maybexs _pkgreal=JSON-MaybeXS +_author=HAARG +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.004000 pkgrel=0 pkgdesc="Use <Cpanel::JSON::XS> with a fallback to <JSON::XS> and <JSON::PP>" url="https://metacpan.org/release/JSON-MaybeXS" arch="noarch" license="GPL-2.0-only OR Artistic-1.0-Perl" -cpandepends="perl-cpanel-json-xs" -cpanmakedepends="perl-test-without-module" -depends="$cpandepends" -makedepends="perl-dev $cpanmakedepends" +depends="perl-cpanel-json-xs" +makedepends="" +checkdepends="perl-test-without-module" subpackages="$pkgname-doc" -source="https://search.cpan.org/CPAN/authors/id/H/HA/HAARG/$_pkgreal-$pkgver.tar.gz" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" builddir="$srcdir/$_pkgreal-$pkgver" -prepare() { - cd "$builddir" - export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor -} - build() { - cd "$builddir" - export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + 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 } |