diff options
Diffstat (limited to 'community/perl-json-xs/APKBUILD')
-rw-r--r-- | community/perl-json-xs/APKBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/community/perl-json-xs/APKBUILD b/community/perl-json-xs/APKBUILD new file mode 100644 index 0000000000..03d74ed01f --- /dev/null +++ b/community/perl-json-xs/APKBUILD @@ -0,0 +1,46 @@ +# Automatically generated by apkbuild-cpan, template 1 +# Contributor: Valery Kartel <valery.kartel@gmail.com> +# Maintainer: Valery Kartel <valery.kartel@gmail.com> +pkgname=perl-json-xs +_pkgreal=JSON-XS +pkgver=4.0 +pkgrel=0 +pkgdesc="Perl extension to converts data structures to JSON and vice versa" +url="http://search.cpan.org/dist/JSON-XS/" +arch="all" +license="GPL PerlArtistic" +cpandepends="perl-types-serialiser perl-common-sense perl-canary-stability" +cpanmakedepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/$_pkgreal-$pkgver.tar.gz" + +builddir="$srcdir/$_pkgreal-$pkgver" + +prepare() { + 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" + export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + make +} + +check() { + cd "$builddir" + make test +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +sha512sums="83b8163ee0fa18e4f768de2dc16c66bd31f9e969917c852b66d7a8d630432792f6a3b4cbbd9d72b593b3b146c593344612cf3d5e58797f6f27f79160f3e9aea1 JSON-XS-4.0.tar.gz" |