![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 6ed51c4b696d5075fc5c88f0211689aaabb0adb0 Author: Danny Rawlins <monster.romster@gmail.com> Date: Wed Oct 23 21:56:26 2019 +1100 p5-compress-bzip2: initial import diff --git a/p5-compress-bzip2/.footprint b/p5-compress-bzip2/.footprint new file mode 100644 index 00000000..3b91e1b6 --- /dev/null +++ b/p5-compress-bzip2/.footprint @@ -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 diff --git a/p5-compress-bzip2/.signature b/p5-compress-bzip2/.signature new file mode 100644 index 00000000..05d2c509 --- /dev/null +++ b/p5-compress-bzip2/.signature @@ -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 diff --git a/p5-compress-bzip2/Pkgfile b/p5-compress-bzip2/Pkgfile new file mode 100644 index 00000000..b6413681 --- /dev/null +++ b/p5-compress-bzip2/Pkgfile @@ -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 +}