blob: 7c8a7d7fc56fa65790bcb7f487d263ecab2b7b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer: Maxwell Pray a.k.a. Synthead <synthead@gmail.com>
pkgname=perl-b-hooks-op-check
_cpanname="B-Hooks-OP-Check"
pkgver=0.19
pkgrel=1
pkgdesc="Wrap OP check callbacks"
arch=('i686' 'x86_64')
license=('GPL' 'PerlArtistic')
url="http://search.cpan.org/~flora/$_cpanname/"
options=('!emptydirs')
depends=('perl>=5.5.0')
makedepends=('perl-extutils-depends')
source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/$_cpanname-$pkgver.tar.gz")
md5sums=('a6af890eccb266f6ad9cb295eb7c570b')
# 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
}
|