diff options
Diffstat (limited to 'community/perl-json-xs/PKGBUILD')
-rw-r--r-- | community/perl-json-xs/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/perl-json-xs/PKGBUILD b/community/perl-json-xs/PKGBUILD new file mode 100644 index 000000000..4bd2e9f84 --- /dev/null +++ b/community/perl-json-xs/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 92759 2013-06-14 17:40:33Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Tor Krill <tor@krill.nu> + +pkgname=perl-json-xs +pkgver=2.34 +pkgrel=1 +pkgdesc="JSON::XS - JSON serialising/deserialising, done correctly and fast" +url="http://search.cpan.org/dist/JSON-XS/" +license=("GPL") +arch=('i686' 'x86_64') +depends=('perl' 'perl-common-sense') +options=('!emptydirs') +source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz) +md5sums=('dda3c03335665cdeff91c37a269b833b') + +build() { + cd $srcdir/JSON-XS-$pkgver +# eval `perl -V:archname` + perl Makefile.PL INSTALLDIRS=vendor + make +} +package() { + cd $srcdir/JSON-XS-$pkgver + make DESTDIR=$pkgdir install + + find $pkgdir -name '.packlist' -delete && \ + find $pkgdir -name '*.pod' -delete +} |