diff options
Diffstat (limited to 'perl-constant-boolean/PKGBUILD')
-rw-r--r-- | perl-constant-boolean/PKGBUILD | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/perl-constant-boolean/PKGBUILD b/perl-constant-boolean/PKGBUILD deleted file mode 100644 index 8499a8b23..000000000 --- a/perl-constant-boolean/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# Maintainer: Erich Eckner <arch at eckner dot net> - -pkgname='perl-constant-boolean' -pkgver='0.02' -pkgrel=12 -pkgdesc='Define TRUE and FALSE constants' -arch=('any') -license=('PerlArtistic' 'GPL') -options=('!emptydirs') -depends=( - 'perl>=5.38' - 'perl<5.39' - 'perl-symbol-util>=0.02') -checkdepends=() -url='https://metacpan.org/pod/constant::boolean' -_distdir="constant-boolean-${pkgver}" -source=("https://cpan.metacpan.org/authors/id/D/DE/DEXTER/${_distdir}.tar.gz") -sha512sums=('80b2f6cb5f930a022ac51299e7a22b10db8641077a0977bda17efc43a8cc43eab7993274decc12440820a74fd0f11882536176c9129c45ade599552f8068329f') - -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: |