diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:22 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:22 +0000 |
commit | 1acdc8dd0a6611720b6946f5f69d8157d34fe5af (patch) | |
tree | f593c9e83ac62018f05ed526980b84a44e4351ff /p5-json | |
parent | 75d9c41b3042d6b88594cc2dfd672a1b1fe1901c (diff) | |
download | contrib-1acdc8dd0a6611720b6946f5f69d8157d34fe5af.tar.gz contrib-1acdc8dd0a6611720b6946f5f69d8157d34fe5af.tar.xz |
p5-json: initial commit, version 4.02
Diffstat (limited to 'p5-json')
-rw-r--r-- | p5-json/.footprint | 25 | ||||
-rw-r--r-- | p5-json/.signature | 5 | ||||
-rw-r--r-- | p5-json/Pkgfile | 20 |
3 files changed, 50 insertions, 0 deletions
diff --git a/p5-json/.footprint b/p5-json/.footprint new file mode 100644 index 000000000..6be8e8b65 --- /dev/null +++ b/p5-json/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/perl5/ +drwxr-xr-x root/root usr/lib/perl5/5.28/ +drwxr-xr-x root/root usr/lib/perl5/5.28/linux-thread-multi/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/JSON.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/JSON/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/JSON/backportPP.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/JSON/backportPP/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/JSON/backportPP/Boolean.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/JSON/backportPP/Compat5005.pm +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/JSON/backportPP/Compat5006.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/JSON/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man3/ +-r--r--r-- root/root usr/share/man/man3/JSON.3pm.gz +-r--r--r-- root/root usr/share/man/man3/JSON::backportPP.3pm.gz +-r--r--r-- root/root usr/share/man/man3/JSON::backportPP::Boolean.3pm.gz +-r--r--r-- root/root usr/share/man/man3/JSON::backportPP::Compat5005.3pm.gz +-r--r--r-- root/root usr/share/man/man3/JSON::backportPP::Compat5006.3pm.gz diff --git a/p5-json/.signature b/p5-json/.signature new file mode 100644 index 000000000..20a257c58 --- /dev/null +++ b/p5-json/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3wEa+dyzCmP8xOg0I9yvXOvJAj1/kadiy5oUFzjvrA7lsH18C2lIblDu1Ntf3vbpM4oY0uWr/Ed5idktp/p76AY= +SHA256 (Pkgfile) = 7f1df806267f7c06c8dc6cbee86157e067eed00d86d986c1eb58314c82c4f20d +SHA256 (.footprint) = 436221a14b7ffb00ce2fc29e4665f67842d7bea8ea6a6b2d35cd79ad219978d9 +SHA256 (JSON-4.02.tar.gz) = 444a88755a89ffa2a5424ab4ed1d11dca61808ebef57e81243424619a9e8627c diff --git a/p5-json/Pkgfile b/p5-json/Pkgfile new file mode 100644 index 000000000..9242ca74c --- /dev/null +++ b/p5-json/Pkgfile @@ -0,0 +1,20 @@ +# Description: JSON (JavaScript Object Notation) encoder/decoder +# URL: https://cpan.metacpan.org/dist/JSON +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: + +name=p5-json +version=4.02 +release=1 +source=(https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-$version.tar.gz) + +build() { + cd JSON-$version + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + make install DESTDIR=$PKG + find $PKG -name .packlist -o \ + -name perllocal.pod -o \ + -name README -o \ + -name '*.bs' | xargs rm +} |