blob: b83a6e283b99398aefc14b1e3bb201e3ffa20930 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Generator : neuesPerlPaket (28b2f74dba87d5b9704e48582062ab93f41cf91629ca4c2bf134bbcd713a9110c07bc8f2e76567c6a6ba6b63044d37bbacca314917992dc3c00b0f8a2ecd6016)
pkgname='perl-data-sah-filter'
pkgver=0.015
pkgrel=1
pkgdesc='Filtering for Data::Sah'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
provides=(
'perl-data-sah-filtercommon=0.015'
'perl-data-sah-filterjs=0.015'
'perl-data-sah-filter-js-str-downcase=0.015'
'perl-data-sah-filter-js-str-lc=0.015'
'perl-data-sah-filter-js-str-lcfirst=0.015'
'perl-data-sah-filter-js-str-lowercase=0.015'
'perl-data-sah-filter-js-str-ltrim=0.015'
'perl-data-sah-filter-js-str-rtrim=0.015'
'perl-data-sah-filter-js-str-trim=0.015'
'perl-data-sah-filter-js-str-uc=0.015'
'perl-data-sah-filter-js-str-ucfirst=0.015'
'perl-data-sah-filter-js-str-upcase=0.015'
'perl-data-sah-filter-js-str-uppercase=0.015'
'perl-data-sah-filter-perl-array-remove_undef=0.015'
'perl-data-sah-filter-perl-array-uniq=0.015'
'perl-data-sah-filter-perl-array-uniqnum=0.015'
'perl-data-sah-filter-perl-array-uniqstr=0.015'
'perl-data-sah-filter-perl-float-ceil=0.015'
'perl-data-sah-filter-perl-float-check_has_fraction=0.015'
'perl-data-sah-filter-perl-float-check_int=0.015'
'perl-data-sah-filter-perl-float-floor=0.015'
'perl-data-sah-filter-perl-float-round=0.015'
'perl-data-sah-filter-perl-str-check=0.015'
'perl-data-sah-filter-perl-str-downcase=0.015'
'perl-data-sah-filter-perl-str-lc=0.015'
'perl-data-sah-filter-perl-str-lcfirst=0.015'
'perl-data-sah-filter-perl-str-lowercase=0.015'
'perl-data-sah-filter-perl-str-ltrim=0.015'
'perl-data-sah-filter-perl-str-oneline=0.015'
'perl-data-sah-filter-perl-str-remove_comment=0.015'
'perl-data-sah-filter-perl-str-remove_nondigit=0.015'
'perl-data-sah-filter-perl-str-remove_whitespace=0.015'
'perl-data-sah-filter-perl-str-replace_map=0.015'
'perl-data-sah-filter-perl-str-rtrim=0.015'
'perl-data-sah-filter-perl-str-trim=0.015'
'perl-data-sah-filter-perl-str-try_center=0.015'
'perl-data-sah-filter-perl-str-uc=0.015'
'perl-data-sah-filter-perl-str-ucfirst=0.015'
'perl-data-sah-filter-perl-str-upcase=0.015'
'perl-data-sah-filter-perl-str-uppercase=0.015'
'perl-data-sah-filter-perl-str-wrap=0.015')
depends=(
'perl>=5.36'
'perl<5.37'
'perl-data-dmp>=0.242'
'perl-exporter>=5.57'
'perl-file-temp>=0.2307'
'perl-ipc-system-options>=0.339'
'perl-json'
'perl-log-ger>=0.038'
'perl-nodejs-util>=0.007')
makedepends=(
'perl-extutils-makemaker'
'perl-io'
'perl-pathtools'
'perl-test-simple>=0.98')
url='https://metacpan.org/release/Data-Sah-Filter'
_distdir="Data-Sah-Filter-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/P/PE/PERLANCAR/${_distdir}.tar.gz")
sha512sums=('7b0328a14ba39eac1f23058f4fe5af17e76dfa6544fba9e261609ddee10dded08d7e1c1b14b072f23b3531043ce4cae06d2821ac9c52daaec5c60d341c12c598')
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
}
|