diff options
author | CyberLeo <cyberleo@cyberleo.net> | 2020-03-28 05:45:52 -0500 |
---|---|---|
committer | CyberLeo <cyberleo@cyberleo.net> | 2020-03-28 05:45:52 -0500 |
commit | 9297468fa579836e3a6a381b798feb6b78217c2d (patch) | |
tree | 53168212f427afbcf0693b534530a4af803152e9 /user/perl-extutils-cppguess | |
parent | a63cc05c53a6f4c22422dc8c69808b14d87a6f6e (diff) | |
parent | da5a69b65a8791fffa6e93366ee585f87eff136d (diff) | |
download | packages-9297468fa579836e3a6a381b798feb6b78217c2d.tar.gz packages-9297468fa579836e3a6a381b798feb6b78217c2d.tar.bz2 packages-9297468fa579836e3a6a381b798feb6b78217c2d.tar.xz packages-9297468fa579836e3a6a381b798feb6b78217c2d.zip |
Merge branch 'master' into zfs
Diffstat (limited to 'user/perl-extutils-cppguess')
-rw-r--r-- | user/perl-extutils-cppguess/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/user/perl-extutils-cppguess/APKBUILD b/user/perl-extutils-cppguess/APKBUILD new file mode 100644 index 000000000..75fbfd83c --- /dev/null +++ b/user/perl-extutils-cppguess/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +pkgname=perl-extutils-cppguess +_pkgreal=ExtUtils-CppGuess +_author=ETJ +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} +pkgver=0.21 +pkgrel=0 +pkgdesc="Perl module for checking C++ compiler and flags" +url="https://metacpan.org/pod/ExtUtils::CppGuess" +arch="noarch" +license="Artistic-2.0 OR GPL-2.0-only" +depends="perl perl-capture-tiny perl-extutils-parsexs" +makedepends="perl-dev perl-module-build perl-extutils-cbuilder" +subpackages="$pkgname-doc" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/ExtUtils-CppGuess-$pkgver" + +build() { + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + make test +} + +package() { + make DESTDIR="$pkgdir" install + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +sha512sums="e48e4815ac9db4e8bb91de101f1d22aed95c770cf6fa2ea5e38094643fe96bc9fe69b0e5a76ba8aa53a653753f93526edab8b1604d864bb2b3a50223617f84d9 ExtUtils-CppGuess-0.21.tar.gz" |