1
0
forked from ports/contrib

p5-extutils-libbuilder: initial commit, version 0.08

This commit is contained in:
Tim Biermann 2019-08-31 10:40:09 +00:00
parent 3ceb39a9f4
commit 7b9e72b25a
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 38 additions and 0 deletions

View File

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

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xgCN6hbZWPcrtP+hbKdcDCrPoWr2IgxhseVn/LwFJ2KeBVxOnQZSm7dMnukmybcONfHXKNegbgBgkLHIRdRZwY=
SHA256 (Pkgfile) = ec3c2ce216e83e10743e8d7986c1455a7c838e7d8e603b5f66901547d6674b29
SHA256 (.footprint) = 74e33249f77a93297c042f5bff439f5f8afcb896df3e3777db19ae171515a5f9
SHA256 (ExtUtils-LibBuilder-0.08.tar.gz) = c51171e06de53039f0bca1d97a6471ec37941ff59e8a3d1cb170ebdd2573b5d2

View File

@ -0,0 +1,18 @@
# Description: A tool to build C libraries
# URL: https://metacpan.org/release/ExtUtils-LibBuilder
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: p5-module-build
name=p5-extutils-libbuilder
version=0.08
release=1
source=(https://cpan.metacpan.org/authors/id/A/AM/AMBS/ExtUtils-LibBuilder-$version.tar.gz)
build() {
cd ExtUtils-LibBuilder-$version
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
perl Build.PL
./Build
./Build install installdirs=vendor destdir=$PKG
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
}