diff options
-rw-r--r-- | perl-cpanel-json-xs/PKGBUILD | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/perl-cpanel-json-xs/PKGBUILD b/perl-cpanel-json-xs/PKGBUILD new file mode 100644 index 00000000..bfeb8cf4 --- /dev/null +++ b/perl-cpanel-json-xs/PKGBUILD @@ -0,0 +1,54 @@ +# Maintainer: Erich Eckner <arch at eckner dot net> + +pkgname='perl-cpanel-json-xs' +pkgver='3.0213' +pkgrel='1' +pkgdesc='cPanel fork of JSON::XS, fast and correct serializing' +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=( + 'perl' +) +checkdepends=( + 'perl-json-xs' + 'perl-mojolicious' + 'perl-test-leaktrace' +) +url='https://metacpan.org/release/Cpanel-JSON-XS' +_distdir="Cpanel-JSON-XS-${pkgver}" +source=("https://cpan.metacpan.org/authors/id/R/RU/RURBAN/${_distdir}.tar.gz") +sha512sums=('0147f49261d768048f8c2c8b48cbfd5aa72a00c2b5968732acfffde851ad881a252f15ed4abec8b487c870014256a36368c2b6ed4e286d5286a0ca0881d93519') + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$srcdir/$_distdir" + perl Makefile.PL + make + ) +} + +check() { + cd "$srcdir/$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + make test + ) +} + +package() { + cd "$srcdir/$_distdir" + make install + + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: |