[arch-commits] Commit in (4 files)
Sergej Pupykin
spupykin at archlinux.org
Thu Dec 25 12:47:51 UTC 2014
Date: Thursday, December 25, 2014 @ 13:47:50
Author: spupykin
Revision: 124532
Added:
perl-b-hooks-endofscope/
perl-b-hooks-endofscope/repos/
perl-b-hooks-endofscope/trunk/
perl-b-hooks-endofscope/trunk/PKGBUILD
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Added: perl-b-hooks-endofscope/trunk/PKGBUILD
===================================================================
--- perl-b-hooks-endofscope/trunk/PKGBUILD (rev 0)
+++ perl-b-hooks-endofscope/trunk/PKGBUILD 2014-12-25 12:47:50 UTC (rev 124532)
@@ -0,0 +1,54 @@
+# Maintainer: Maxwell Pray a.k.a. Synthead <synthead at gmail.com>
+# Contributor: aurperl at juster.us
+
+pkgname="perl-b-hooks-endofscope"
+_cpanname="B-Hooks-EndOfScope"
+pkgver="0.13"
+pkgrel="1"
+pkgdesc="Execute code after a scope finished compilation"
+arch=("any")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=(
+ "perl-module-implementation"
+ "perl-module-runtime"
+ "perl-sub-exporter"
+ "perl-sub-exporter-progressive"
+ "perl-try-tiny"
+ "perl-variable-magic>=0.34"
+ "perl>=5.5.0"
+)
+url="http://search.cpan.org/~bobtfish/$_cpanname-$pkgver/"
+source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/$_cpanname-$pkgver.tar.gz")
+md5sums=("6cdaaa88a39054cd13aacad7bd2171da")
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+ cd "$srcdir/$_cpanname-$pkgver"
+ 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
+}
+
+build() {
+ prepareEnvironment
+ /usr/bin/perl Makefile.PL
+ make
+}
+
+check() {
+ prepareEnvironment
+ make test
+}
+
+package() {
+ prepareEnvironment
+ make install
+
+ # Remove "perllocal.pod" and ".packlist".
+ find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
More information about the arch-commits
mailing list