p5-number-compare: initial commit, version 0.03

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

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/Number/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/Number/Compare.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/Number/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Number/Compare/
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/Number::Compare.3pm.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31kVg35OjAPHVT/gJ0qhEebW2krkenkylM6GTsReqUQMSt6B+ZQCxfimle+McIETwDTd27R/ClxMWMJuq5Osygw=
SHA256 (Pkgfile) = c1c88f7edf3eab34c96dae37ec5c9bd746c334869dbbc23f9d58bac4e262382d
SHA256 (.footprint) = 32569f824cf4c21e59debb67e0a487a07f0e1e5293f9d70fa2f77c337dda6330
SHA256 (Number-Compare-0.03.tar.gz) = 83293737e803b43112830443fb5208ec5208a2e6ea512ed54ef8e4dd2b880827

19
p5-number-compare/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: numeric comparisons for human file sizes
# URL: https://search.mcpan.org/dist/Number-Compare
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=p5-number-compare
version=0.03
release=1
source=(https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Number-Compare-$version.tar.gz)
build() {
cd Number-Compare-$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
}