summaryrefslogtreecommitdiff
path: root/perl-data-serializer/PKGBUILD
blob: c7c8852b1d3876cc7e23f4e4b95fa999da0bf0b7 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Maintainer: Erich Eckner <arch at eckner dot net>
# Generator : neuesPerlPaket (200622b8ed8a0a6a22eb14f088df6dc74c80677dc763caa0d96fd7c958ef45e2bb730584c916d8d940419fafbb27975ac4c7caf1cf3efa677c6e51def3f9c3ac)

pkgname='perl-data-serializer'
pkgver=0.65
pkgrel=1
pkgdesc='Modules that serialize data structures'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
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')
makedepends=(
  'perl-module-build>=0.35'
  'perl-pathtools'
  'perl-test-simple')
depends=(
  'perl-autoloader'
  'perl-data-dumper>=2.08'
  'perl-digest-sha'
  'perl-exporter'
  'perl-io')
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.03'
  'perl-data-serializer-yaml-syck=0.03')
checkdepends=(
  'perl-bencode'
  'perl-config-general'
  'perl-convert-bencode'
  'perl-convert-bencode_xs'
  'perl-data-denter'
  'perl-data-taxi'
  'perl-digest-sha1'
  'perl-freezethaw'
  'perl-json'
  'perl-php-serialization'
  'perl-xml-dumper'
  'perl-xml-simple'
  'perl-yaml'
  'perl-yaml-syck'
)
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=('cc6cd25779f08598bebac38301b3bac667098f8582be8b4cd63cac7723ebc9d58e081b205e9326fd762eba5e378160545c718d50a8a1ead945be6da188c4de0d')

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
}