From bbdb4f9cf32ee21245d2957a13382a85c7c6a8ed Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 7 Jun 2017 10:25:30 +0200 Subject: perl-module-install-authorrequires neu --- perl-module-install-authorrequires/PKGBUILD | 65 +++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 perl-module-install-authorrequires/PKGBUILD (limited to 'perl-module-install-authorrequires') diff --git a/perl-module-install-authorrequires/PKGBUILD b/perl-module-install-authorrequires/PKGBUILD new file mode 100644 index 00000000..489ff88f --- /dev/null +++ b/perl-module-install-authorrequires/PKGBUILD @@ -0,0 +1,65 @@ +# Maintainer: Erich Eckner +# Generator : neuesPerlPaket (54bfd7cca693b229aa53ffc98d551b62ea234aaa5be7e6717857610a2da6803b0be2dfe7ddfe9810cf320c477023b3b4356d47df7f8c202ed8c14d71b472c0bc) + +pkgname='perl-module-install-authorrequires' +pkgver='0.02' +pkgrel='1' +pkgdesc='declare author-only dependencies' +arch=('x86_64' 'i686') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=( + 'perl-module-install') +makedepends=( + 'perl-extutils-makemaker>=6.42') +url='https://metacpan.org/release/Module-Install-AuthorRequires' +_distdir="Module-Install-AuthorRequires-${pkgver}" +source=("https://cpan.metacpan.org/authors/id/F/FL/FLORA/${_distdir}.tar.gz") +sha512sums=('66d2a603e5700eca0a93523b6adcd0330d439b41730b7ccb2606fc4e43e4b6620cf376637fcbbe71d4733ce144c46822fecac39d4bed3d5303b68863425d9819') + +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