blob: e3e418182e2ed13973f681ddd8ecbb3d829bf5a2 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname='perl-json-maybexs'
pkgver=1.004002
pkgrel=2
pkgdesc='Use Cpanel::JSON::XS with a fallback to JSON::XS and JSON::PP'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
optdepends=(
'perl-cpanel-json-xs')
makedepends=(
'perl-extutils-makemaker'
'perl-test-needs>=0.002006'
'perl-test-simple>=0.88')
depends=(
'perl>=5.32'
'perl<5.33'
'perl-carp'
'perl-json-pp>=2.27300'
'perl-scalar-list-utils')
checkdepends=(
'perl-cpanel-json-xs'
'perl-json-xs'
'perl-test-without-module'
)
url='https://metacpan.org/release/JSON-MaybeXS'
_distdir="JSON-MaybeXS-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/E/ET/ETHER/${_distdir}.tar.gz")
sha512sums=('5e8965323051f34e8b0f2ad9ed2eb7ec05a6479112c1c56c450f7d3224e82bf382f643e897c33f11218e2fb7d8807ad3c5306f83b7eb53081602d9d8fafc4fbe')
build() {
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
cd "$srcdir/$_distdir"
perl Makefile.PL
make
)
}
check() {
cd "$srcdir/$_distdir"
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
make test
)
}
package() {
cd "$srcdir/$_distdir"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
# Local Variables:
# mode: shell-script
# sh-basic-offset: 2
# End:
# vim:set ts=2 sw=2 et:
|