diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-10-23 21:57:57 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-10-23 22:32:43 +1100 |
commit | e92fbc63a56fb94b3649b0c200a40291b34f6cc8 (patch) | |
tree | c8974a5707b94ad8f71ee11bcc19439852fe3e07 /p5-ipc-system-simple | |
parent | 4cbfbf86d37c7f8d0ead3d897cedeba85277617a (diff) | |
download | contrib-e92fbc63a56fb94b3649b0c200a40291b34f6cc8.tar.gz contrib-e92fbc63a56fb94b3649b0c200a40291b34f6cc8.tar.xz |
p5-ipc-system-simple: initial import
Diffstat (limited to 'p5-ipc-system-simple')
-rw-r--r-- | p5-ipc-system-simple/.footprint | 12 | ||||
-rw-r--r-- | p5-ipc-system-simple/.signature | 5 | ||||
-rw-r--r-- | p5-ipc-system-simple/Pkgfile | 21 |
3 files changed, 38 insertions, 0 deletions
diff --git a/p5-ipc-system-simple/.footprint b/p5-ipc-system-simple/.footprint new file mode 100644 index 000000000..a48f73a59 --- /dev/null +++ b/p5-ipc-system-simple/.footprint @@ -0,0 +1,12 @@ +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/site_perl/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/IPC/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/IPC/System/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/IPC/System/Simple.pm +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/IPC::System::Simple.3pm.gz diff --git a/p5-ipc-system-simple/.signature b/p5-ipc-system-simple/.signature new file mode 100644 index 000000000..92c673ef5 --- /dev/null +++ b/p5-ipc-system-simple/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF36gGgU0dKeID03WZpyUphdUdkseM90bRK+4g2FZklxbyZTo03UKf69F+AihYsVPRpFZaBrYAbTtak1j5tYfaPAg= +SHA256 (Pkgfile) = e10b9fe9f2cefff2f57cbdfc7990d0778b7bd9179f4cc50986280cdb614f33ef +SHA256 (.footprint) = e4c36eb1297503c6f3c429bdfed6496f0422949d21aa6c73bbd104f83bc05e54 +SHA256 (IPC-System-Simple-1.25.tar.gz) = f1b6aa1dfab886e8e4ea825f46a1cbb26038ef3e727fef5d84444aa8035a4d3b diff --git a/p5-ipc-system-simple/Pkgfile b/p5-ipc-system-simple/Pkgfile new file mode 100644 index 000000000..456d58dc6 --- /dev/null +++ b/p5-ipc-system-simple/Pkgfile @@ -0,0 +1,21 @@ +# Description: Run commands simply, with detailed diagnostics +# URL: https://metacpan.org/release/IPC-System-Simple +# Maintainer: Danny Rawlins, crux at romster dot me + +name=p5-ipc-system-simple +_realname=IPC-System-Simple +_author=PJF +version=1.25 +release=1 +source=(https://cpan.metacpan.org/authors/id/${_author::1}/${_author::2}/$_author/$_realname-$version.tar.gz) + +build() { + cd $_realname-$version + + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$PKG" install + + find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete + find $PKG -depth -empty -delete +} |