blob: e885dad02427c5854452bc668f5e1153a7a10476 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Generator : neuesPerlPaket (200622b8ed8a0a6a22eb14f088df6dc74c80677dc763caa0d96fd7c958ef45e2bb730584c916d8d940419fafbb27975ac4c7caf1cf3efa677c6e51def3f9c3ac)
pkgname='perl-data-serializer'
pkgver='0.60'
pkgrel='3'
pkgdesc='Modules that serialize data structures'
arch=('x86_64' 'i686')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
provides=(
'perl-data-serializer-bencode=0.03'
'perl-data-serializer-config-general=0.02'
'perl-data-serializer-convert-bencode=0.03'
'perl-data-serializer-convert-bencode_xs=0.03'
'perl-data-serializer-cookbook=0.05'
'perl-data-serializer-data-denter=0.02'
'perl-data-serializer-data-dumper=0.05'
'perl-data-serializer-data-taxi=0.02'
'perl-data-serializer-freezethaw=0.02'
'perl-data-serializer-json=0.04'
'perl-data-serializer-json-syck=0.02'
'perl-data-serializer-persistent=0.01'
'perl-data-serializer-php-serialization=0.02'
'perl-data-serializer-raw=0.02'
'perl-data-serializer-storable=0.03'
'perl-data-serializer-xml-dumper=0.02'
'perl-data-serializer-xml-simple=0.03'
'perl-data-serializer-yaml=0.02'
'perl-data-serializer-yaml-syck=0.02')
depends=(
'perl-autoloader'
'perl-data-dumper>=2.08'
'perl-digest-sha'
'perl-exporter'
'perl-io')
makedepends=(
'perl-module-build>=0.35'
'perl-pathtools'
'perl-test-simple')
optdepends=(
'perl-bencode'
'perl-compress-ppmd'
'perl-config-general'
'perl-convert-bencode'
'perl-convert-bencode_xs'
'perl-crypt-blowfish'
'perl-crypt-cbc'
'perl-data-denter'
'perl-data-taxi'
'perl-freezethaw'
'perl-io-compress'
'perl-json'
'perl-json-xs'
'perl-mime-base64'
'perl-php-serialization'
'perl-storable'
'perl-xml-dumper'
'perl-xml-simple'
'perl-yaml'
'perl-yaml-syck')
checkdepends=('perl-digest-sha1')
url='https://metacpan.org/release/Data-Serializer'
_distdir="Data-Serializer-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/N/NE/NEELY/${_distdir}.tar.gz")
sha512sums=('85211d2ca5db19219f89da5300b93835866baa5e12237efa61ea82d2b841f6b5a05bca889d98878151d1f7517b2af5d9a1535e7bbcd64245936b270a82be21bb')
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
}
|