From beffc0b55c60bbf8fd76657bd131112c08699d6f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 23 May 2016 10:30:43 +0200 Subject: perl-cgi-compile neu --- perl-cgi-compile/PKGBUILD | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 perl-cgi-compile/PKGBUILD (limited to 'perl-cgi-compile') diff --git a/perl-cgi-compile/PKGBUILD b/perl-cgi-compile/PKGBUILD new file mode 100644 index 00000000..4684ad00 --- /dev/null +++ b/perl-cgi-compile/PKGBUILD @@ -0,0 +1,72 @@ +# Maintainer: Erich Eckner +# Generator : neuesPerlPaket (900e236c34f5f70361b2c0eed5444de99193a45a6e5d0c97dc30ac9769d87f1aa77dfcc5a79ef0dea0df9d666b25059c0bc95a7ce51f80bc58ce97da48008bc9) + +pkgname='perl-cgi-compile' +pkgver='0.21' +pkgrel='1' +pkgdesc='Compile .cgi scripts to a code reference like ModPerl::Registry' +arch=('x86_64' 'i686') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=( + 'perl-file-pushd' + 'perl>=5.8.1') +makedepends=( + 'perl-test-simple' + 'perl-test-nowarnings' + 'perl-test-requires' + 'perl-module-build-tiny>=0.034') +checkdepends=( + 'perl-cgi' + 'perl-switch') +url='https://metacpan.org/release/CGI-Compile' +_distdir="CGI-Compile-${pkgver}" +source=("https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/${_distdir}.tar.gz") +sha512sums=('0b26fbe4a38645df3aeae03647292125210147321ed9552bbd871824915fabaafdac8601667bddfb73038b7f096d19e1ba7a00acaa5dc28865c1f97247ad5e64') + +build() { + cd "${srcdir}/${_distdir}" + + # Setting these env variables overwrites any command-line-options we don't want... + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir}'" \ + PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir}'" \ + MODULEBUILDRC=/dev/null + + # If using Makefile.PL + if [ -r Makefile.PL ]; then + perl Makefile.PL + make + # If using Build.PL + elif [ -r Build.PL ]; then + perl Build.PL + perl Build + fi +} + +check() { + cd "${srcdir}/${_distdir}" + + # If using Makefile.PL + if [ -r Makefile.PL ]; then + make test + # If using Build.PL + elif [ -r Build.PL ]; then + perl Build test + fi +} + +package() { + cd "${srcdir}/${_distdir}" + + # If using Makefile.PL + if [ -r Makefile.PL ]; then + make install + # If using Build.PL + elif [ -r Build.PL ]; then + perl Build install + fi + + # remove perllocal.pod and .packlist + find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete +} -- cgit v1.2.3-54-g00ecf