diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:09 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-31 10:40:09 +0000 |
commit | c2781b1fbdd9fd12ecff7dbcefda86c9661e6407 (patch) | |
tree | c462b54088b6727a4bd150287d66a087a9469041 /p5-file-find-rule | |
parent | 7b9e72b25aff16d560759ebc78ce0626592366a8 (diff) | |
download | contrib-c2781b1fbdd9fd12ecff7dbcefda86c9661e6407.tar.gz contrib-c2781b1fbdd9fd12ecff7dbcefda86c9661e6407.tar.xz |
p5-file-find-rule: initial commit, version 0.34
Diffstat (limited to 'p5-file-find-rule')
-rw-r--r-- | p5-file-find-rule/.footprint | 26 | ||||
-rw-r--r-- | p5-file-find-rule/.signature | 5 | ||||
-rw-r--r-- | p5-file-find-rule/Pkgfile | 19 |
3 files changed, 50 insertions, 0 deletions
diff --git a/p5-file-find-rule/.footprint b/p5-file-find-rule/.footprint new file mode 100644 index 000000000..2ec6ee926 --- /dev/null +++ b/p5-file-find-rule/.footprint @@ -0,0 +1,26 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-r-xr-xr-x root/root usr/bin/findrule +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/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/File/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/File/Find/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/File/Find/Rule.pm +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/File/Find/Rule/ +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/File/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/File/Find/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/File/Find/Rule/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-r--r--r-- root/root usr/share/man/man1/findrule.1pm.gz +drwxr-xr-x root/root usr/share/man/man3/ +-r--r--r-- root/root usr/share/man/man3/File::Find::Rule.3pm.gz +-r--r--r-- root/root usr/share/man/man3/File::Find::Rule::Extending.3pm.gz +-r--r--r-- root/root usr/share/man/man3/File::Find::Rule::Procedural.3pm.gz diff --git a/p5-file-find-rule/.signature b/p5-file-find-rule/.signature new file mode 100644 index 000000000..32af6d782 --- /dev/null +++ b/p5-file-find-rule/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3yoWxvrpEpUOZ4KfDPrue1jbyMUTDDyEf2FdfMnOjCKyfaHwbH3FUgrOpG6ir39sZvevrA+DHJnzW1BEo0nHMQ4= +SHA256 (Pkgfile) = 0ad153d4dd1f5e1159c9c23ded0801e8e368371a5e8ee952252caf5a8f527a04 +SHA256 (.footprint) = 039bc63992f655e734870cbc101ed7bfe59df26e213ce31a64dcd73fae79c228 +SHA256 (File-Find-Rule-0.34.tar.gz) = 7e6f16cc33eb1f29ff25bee51d513f4b8a84947bbfa18edb2d3cc40a2d64cafe diff --git a/p5-file-find-rule/Pkgfile b/p5-file-find-rule/Pkgfile new file mode 100644 index 000000000..47517e102 --- /dev/null +++ b/p5-file-find-rule/Pkgfile @@ -0,0 +1,19 @@ +# Description: Alternative interface to File::Find +# URL: https://search.mcpan.org/dist/File-Find-Rule +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: p5-number-compare p5-text-glob + +name=p5-file-find-rule +version=0.34 +release=1 +source=(https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/File-Find-Rule-$version.tar.gz) + +build() { + cd File-Find-Rule-$version + unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + perl Makefile.PL + make + make install INSTALLDIRS=vendor DESTDIR=$PKG + find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete +} |