summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-08-09 19:57:54 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-08-09 19:57:54 -0500
commit08e9c07de545c779f26a47d13ef08189cd8f0f66 (patch)
tree0ecfcb205a58c4fb908441a2a501c019ed169530 /pcr
parentf1886b95bbd83afb19e3f04769f10c7dea966d00 (diff)
downloadabslibre-08e9c07de545c779f26a47d13ef08189cd8f0f66.tar.gz
abslibre-08e9c07de545c779f26a47d13ef08189cd8f0f66.tar.bz2
abslibre-08e9c07de545c779f26a47d13ef08189cd8f0f66.zip
Removing perl-autovivification: This package is in [extra] repo
Diffstat (limited to 'pcr')
-rw-r--r--pcr/perl-autovivification/PKGBUILD50
1 files changed, 0 insertions, 50 deletions
diff --git a/pcr/perl-autovivification/PKGBUILD b/pcr/perl-autovivification/PKGBUILD
deleted file mode 100644
index 8a87ef6a6..000000000
--- a/pcr/perl-autovivification/PKGBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# Contributor (Arch): Mateusz Krasowski <matkras@gmail.com>
-# Contributor (Arch): Luigi ranghetti <ggranga@gmail.com>
-# Generator (Arch): CPANPLUS::Dist::Arch 1.25
-# Contributor: Márcio Silva <coadde@parabola.nu>
-
-pkgname='perl-autovivification'
-pkgver='0.16'
-pkgrel='1'
-pkgdesc="Lexically disable autovivification."
-arch=('i686' 'x86_64' 'armv7h')
-license=('GPL1')
-options=('!emptydirs')
-depends=('perl>=5.8.3')
-makedepends=()
-url='http://search.cpan.org/dist/autovivification'
-source=("http://www.cpan.org/authors/id/V/VP/VPIT/autovivification-$pkgver.tar.gz")
-md5sums=('7e20817f6034910c1bc23351d81a0658')
-_distdir="autovivification-$pkgver"
-
-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"
- /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: