From ec7b89e078f0a4d71232f1f30e39435ab0d050e9 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 8 Aug 2017 12:45:56 +0200 Subject: perl-class-accessor-grouped neu --- perl-class-accessor-grouped/PKGBUILD | 78 ++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 perl-class-accessor-grouped/PKGBUILD (limited to 'perl-class-accessor-grouped') diff --git a/perl-class-accessor-grouped/PKGBUILD b/perl-class-accessor-grouped/PKGBUILD new file mode 100644 index 00000000..5946fd8d --- /dev/null +++ b/perl-class-accessor-grouped/PKGBUILD @@ -0,0 +1,78 @@ +# Maintainer: Erich Eckner +# Generator : neuesPerlPaket (2187f3ca33d7c791f08a9ab8c3893497ec9caa377e13a9f4565f67f0abb693a7e3c3edb2792f2bae0865f195eb47b422ea736d98c72a803ee24cecfcdfa2829f) + +pkgname='perl-class-accessor-grouped' +pkgver='0.10012' +pkgrel='1' +pkgdesc='Lets you build groups of accessors' +arch=('x86_64' 'i686') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +optdepends=( + 'perl-class-xsaccessor>=1.19' + 'perl-sub-name>=0.05' +) +depends=( + 'perl>=5.6.0' + 'perl-carp' + 'perl-module-runtime>=0.012' + 'perl-scalar-list-utils' +) +makedepends=( + 'perl-extutils-cbuilder>=0.27' + 'perl-extutils-makemaker>=6.59' + 'perl-module-install' + 'perl-test-exception>=0.31' + 'perl-test-simple>=0.88' +) +url='https://metacpan.org/release/Class-Accessor-Grouped' +_distdir="Class-Accessor-Grouped-${pkgver}" +source=("https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/${_distdir}.tar.gz") +sha512sums=('195c4b1f9897b50753231ab6c893987a3e49e6283713175d612843651428c8cb2eb791a5385e25607a1db189861811efade33f94ef33c36cd41624e793ca20d1') + +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