diff options
Diffstat (limited to 'perl-exception-base/PKGBUILD')
-rw-r--r-- | perl-exception-base/PKGBUILD | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/perl-exception-base/PKGBUILD b/perl-exception-base/PKGBUILD deleted file mode 100644 index d61731429..000000000 --- a/perl-exception-base/PKGBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# Maintainer: Erich Eckner <arch at eckner dot net> - -pkgname='perl-exception-base' -pkgver='0.2501' -pkgrel=12 -pkgdesc='Lightweight exceptions' -arch=('any') -license=('PerlArtistic' 'GPL') -options=('!emptydirs') -depends=( - 'perl>=5.38' - 'perl<5.39' - 'perl>=5.6.0') -makedepends=( - 'perl-test-unit-lite>=0.12') -checkdepends=( - 'perl-test-unit-lite' -) -url='https://metacpan.org/pod/Exception::Base' -_distdir="Exception-Base-${pkgver}" -source=("https://cpan.metacpan.org/authors/id/D/DE/DEXTER/${_distdir}.tar.gz") -sha512sums=('848993b3d72f3a8f79467c69afdff848e61aed7d24977bafe4cfea56631a5c4746f9993330a4373a1c727f440c0cdc70e4001d7841f17125cf603772a6805acd') - -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 - - cd "$srcdir/$_distdir" - 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: |