p5-compress-bzip2: initial import

This commit is contained in:
Danny Rawlins 2019-10-23 21:56:26 +11:00
parent 1d1ba6b784
commit 6ed51c4b69
3 changed files with 44 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/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/linux-thread-multi/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/Compress/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/Compress/Bzip2.pm
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/Compress/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Compress/Bzip2/
-r-xr-xr-x root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Compress/Bzip2/Bzip2.so
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/linux-thread-multi/auto/Compress/Bzip2/autosplit.ix
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/Compress::Bzip2.3pm.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF352p0EUO1M/wlXo7qqQhjDgiOOPBJPlZb8G4AHfzrxFOpdqrSgu6EQHXeYC53GjxL8SaWCEe71Sw8Ifol3flhQY=
SHA256 (Pkgfile) = 2e771ebdadc6c0d234dbd9b152a046486e21534307a05e4f007aa28ed6b9adf4
SHA256 (.footprint) = 8803f119cd6d6737d2592a5b664984d978158a027f3c16f893593ff6c9087914
SHA256 (Compress-Bzip2-2.26.tar.gz) = 5132f0c5f377a54d77ee36d332aa0ece585c22a40f2c31f2619e40262f5c4f0c

22
p5-compress-bzip2/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Interface to Bzip2 compression library
# URL: https://metacpan.org/release/Compress-Bzip2
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: bzip2
name=p5-compress-bzip2
_realname=Compress-Bzip2
_author=RURBAN
version=2.26
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
}