diff options
author | Erich Eckner <git@eckner.net> | 2016-04-05 15:23:28 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-04-05 15:31:08 +0200 |
commit | 9e9d2e29ccd94e81be66b710a5b149ea87c1bf22 (patch) | |
tree | 3d1dd4ef82ada1c2c32babd7409530b4ed37a836 /perl-module-runtime-conflicts/PKGBUILD | |
parent | ac4018e7b58cabbe3e504dcae46d617d5607c74a (diff) | |
download | archlinuxewe-9e9d2e29ccd94e81be66b710a5b149ea87c1bf22.tar.xz |
perl-module-runtime-conflicts neu
Diffstat (limited to 'perl-module-runtime-conflicts/PKGBUILD')
-rw-r--r-- | perl-module-runtime-conflicts/PKGBUILD | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/perl-module-runtime-conflicts/PKGBUILD b/perl-module-runtime-conflicts/PKGBUILD new file mode 100644 index 000000000..f8a337fb5 --- /dev/null +++ b/perl-module-runtime-conflicts/PKGBUILD @@ -0,0 +1,51 @@ +# Contributor: John D Jones III AKA jnbek <jnbek1972 -_AT_- g m a i l -_Dot_- com> +# Generator : CPANPLUS::Dist::Arch 1.30 + +pkgname='perl-module-runtime-conflicts' +pkgver='0.002' +pkgrel='1' +pkgdesc="Provide information on conflicts for Module::Runtime" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl-dist-checkconflicts' 'perl-module-runtime') +makedepends=() +url='https://metacpan.org/release/Module-Runtime-Conflicts' +source=('http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Runtime-Conflicts-0.002.tar.gz') +md5sums=('6171a55eb2937b4429bed8dfd75080a9') +sha512sums=('e07ee4e7707b6c8ee52afc01f7fb7e8a04fc9ab3f3e4624fa7f4011bb314aa77aa0e060c58592e3bc21d9fb6d9d83190bb655b43940e79a4d95557ce720530af') +_distdir="Module-Runtime-Conflicts-0.002" + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null \ + PERL_MM_FALLBACK_SILENCE_WARNING="blabla" + + cd "$srcdir/$_distdir" + /usr/bin/perl Makefile.PL + make + ) +} + +check() { + cd "$srcdir/$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + make test + ) +} + +package() { + cd "$srcdir/$_distdir" + make install + + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: |