1
0
forked from ports/contrib

p5-text-glob: initial commit, version 0.11

This commit is contained in:
Tim Biermann 2019-08-31 10:40:48 +00:00
parent 6775037674
commit 2c4791abe2
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 41 additions and 0 deletions

17
p5-text-glob/.footprint Normal file
View File

@ -0,0 +1,17 @@
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/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/Text/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Text/Glob.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/Text/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Text/Glob/
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/Text::Glob.3pm.gz

5
p5-text-glob/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zTC4mV0ZvQPH0vm/2JvvcTd74sAxTf+3zY89PDtWkna6z13/ZfORHZDBksC79VqjSNiNUZkXZ5UQD3RB2fzhAY=
SHA256 (Pkgfile) = cb8462c8e54edad2f5f7363846bc79a0e52a9a4b6c4628fe7fa67a09bf1aaa2f
SHA256 (.footprint) = 7529b1b1a84a8befab7cde12ee146b13103dd1f0168bac473b4cbba2808b9f47
SHA256 (Text-Glob-0.11.tar.gz) = 069ccd49d3f0a2dedb115f4bdc9fbac07a83592840953d1fcdfc39eb9d305287

19
p5-text-glob/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: match globbing patterns against text
# URL: https://search.mcpan.org/dist/Text-Glob
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=p5-text-glob
version=0.11
release=1
source=(https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Text-Glob-$version.tar.gz)
build() {
cd Text-Glob-$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
}