summaryrefslogtreecommitdiff
path: root/perl-pod-wordlist-hanekomu
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-09-12 10:19:58 +0200
committerErich Eckner <git@eckner.net>2017-09-12 10:19:58 +0200
commit4e2c4664b5c64f87cd2f36eb8fba63f3ecedad69 (patch)
tree45abd0efb3d9b97618cfdb9ee1f51baec8848355 /perl-pod-wordlist-hanekomu
parent20d4248323497b902a5152c0f60ae2daeb0b4133 (diff)
downloadarchlinuxewe.git.save-4e2c4664b5c64f87cd2f36eb8fba63f3ecedad69.tar.xz
perl-pod-wordlist-hanekomu neu
Diffstat (limited to 'perl-pod-wordlist-hanekomu')
-rw-r--r--perl-pod-wordlist-hanekomu/PKGBUILD74
1 files changed, 74 insertions, 0 deletions
diff --git a/perl-pod-wordlist-hanekomu/PKGBUILD b/perl-pod-wordlist-hanekomu/PKGBUILD
new file mode 100644
index 00000000..db0e501f
--- /dev/null
+++ b/perl-pod-wordlist-hanekomu/PKGBUILD
@@ -0,0 +1,74 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+# Generator : neuesPerlPaket (445682a1bd8a70c152ebe76ddf08deb3d21406c80f819873940cb0909a895cfcde52cc62469cd6f4e4d632f24b3df31e0eec78843cb778079f24dc33b18472ea)
+
+pkgname='perl-pod-wordlist-hanekomu'
+pkgver='1.132680'
+pkgrel='1'
+pkgdesc='Add words for spell checking POD (DEPRECATED)'
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=(
+ 'perl>=5.8.0'
+ 'perl-test-spelling'
+)
+makedepends=(
+ 'perl'
+ 'perl-carp'
+ 'perl-extutils-makemaker>=6.30'
+ 'perl-io'
+ 'perl-pathtools'
+ 'perl-scalar-list-utils'
+ 'perl-test-simple>=0.94'
+)
+url='https://metacpan.org/release/Pod-Wordlist-hanekomu'
+_distdir="Pod-Wordlist-hanekomu-${pkgver}"
+source=("https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/${_distdir}.tar.gz")
+sha512sums=('ace1ef42a799608968754c780d218643493f47ade264c48e5d0a2800b31d75542ed1976afe13d8acb6a8c4b10d92b67d00638a0e0dd2647c91177eb43ae89124')
+
+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
+}