blob: ffa8d7b835cf22c730ab546259989ae17723e3b0 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Generator : neuesPerlPaket (e533bbf8c41e6a86077c98727cbbb63d186e98f776379bb81dcfdbc80e5b33603cdea3f867770038981c462f8fd52b8cdb78cce8ac0776772c309563ee3fe23e)
pkgname='perl-mock-quick'
pkgver='1.111'
pkgrel=8
pkgdesc='Quickly mock objects and classes, even temporarily replace them,'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
provides=(
'perl-mock-quick-class=1.111'
'perl-mock-quick-method=1.111'
'perl-mock-quick-object=1.111'
'perl-mock-quick-object-control=1.111'
'perl-mock-quick-util=1.111'
'perl-object-quick=1.111'
)
depends=(
'perl>=5.36'
'perl<5.37'
'perl-carp'
'perl-exporter-declare>=0.103'
'perl-scalar-list-utils'
)
makedepends=(
'perl-fennec-lite>=0.004'
'perl-module-build>=0.42'
'perl-test-exception>=0.29'
'perl-test-simple>=0.88'
)
checkdepends=(
'perl-path-class'
)
url='https://metacpan.org/release/Mock-Quick'
_distdir="Mock-Quick-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/${_distdir}.tar.gz")
sha512sums=('41efd7cc4f1dbacacac6a1753ac878ff5bd5a28cf8223d5b7abfca86e909910b8992104c250b4a0306a4e65a7783a3a6d372cff068d8cbb17c8e53ce8e0d5044')
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
}
|