summaryrefslogtreecommitdiff
path: root/perl-software-license
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-07-05 15:57:39 +0200
committerErich Eckner <git@eckner.net>2018-07-05 15:57:39 +0200
commit7e48c1ae200150150937a27f9e3f3765770d3981 (patch)
treee19ef6d07cff17f6c3092e89ef1b63b159ba37a1 /perl-software-license
parent3f202d35d624b75d0ecb0961273db4838dec1eb4 (diff)
downloadarchlinuxewe.git.save-7e48c1ae200150150937a27f9e3f3765770d3981.tar.xz
removed (obsolete): perl-data-section perl-parallel-forkmanager perl-software-license perl-test-failwarnings perl-test-mocktime python-owslib qwtpolar spatialindex
Diffstat (limited to 'perl-software-license')
-rw-r--r--perl-software-license/PKGBUILD77
1 files changed, 0 insertions, 77 deletions
diff --git a/perl-software-license/PKGBUILD b/perl-software-license/PKGBUILD
deleted file mode 100644
index b15a0d47..00000000
--- a/perl-software-license/PKGBUILD
+++ /dev/null
@@ -1,77 +0,0 @@
-# Maintainer: Erich Eckner <arch at eckner dot net>
-# Generator : neuesPerlPaket (ef0b8d9e9ed5e7aec93f3e72d031ac7ee7fb4246e042c09b06bbdcecfbc0e3c879d26484951ecde4eb4b299510817c6aead5d93f6a73544b768ed6467f4108fc)
-
-pkgname='perl-software-license'
-pkgver='0.103012'
-pkgrel='2'
-pkgdesc='packages that provide templated software licenses'
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=(
- 'perl>=5.6.0'
- 'perl-carp'
- 'perl-data-section'
- 'perl-io'
- 'perl-module-load'
- 'perl-parent'
- 'perl-pathtools'
- 'perl-text-template'
-)
-makedepends=(
- 'perl-extutils-makemaker'
- 'perl-pathtools'
- 'perl-test-simple>=0.96'
- 'perl-try-tiny'
-)
-url='https://metacpan.org/release/Software-License'
-_distdir="Software-License-${pkgver}"
-source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/${_distdir}.tar.gz")
-sha512sums=('419e9f2617cdfd1586fbfb8d900805dfa3941fdd0a5584ff3489f28511731f8c4a248ab212fd85aa4eab3db55e8f60a6ea589917d404a96b5c1b5a506fbdb4e8')
-
-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
-}