summaryrefslogtreecommitdiff
path: root/perl-module-install-authorrequires
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-06-07 10:25:30 +0200
committerErich Eckner <git@eckner.net>2017-06-07 10:25:30 +0200
commitbbdb4f9cf32ee21245d2957a13382a85c7c6a8ed (patch)
tree18bc345d5fd88b20578075daf4b498b599bf7b0e /perl-module-install-authorrequires
parentf603c31342a22319c75d0ead6e73dc19d3c1f2c8 (diff)
downloadarchlinuxewe.git.save-bbdb4f9cf32ee21245d2957a13382a85c7c6a8ed.tar.xz
perl-module-install-authorrequires neu
Diffstat (limited to 'perl-module-install-authorrequires')
-rw-r--r--perl-module-install-authorrequires/PKGBUILD65
1 files changed, 65 insertions, 0 deletions
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 <arch at eckner dot net>
+# 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
+}