.gitignore: updated
[dragora.git] / recipes / perl / xml-simple / recipe
blob188ad45b649dfdc0bc315c3b200b5bb36a396130
1 # Build recipe for xml-simple.
3 # Copyright (c) 2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=XML-Simple
18 version=2.25
19 release=1
21 pkgname=xml-simple
23 # Set 'outdir' for a nice and well-organized output directory
24 outdir="${outdir}/${arch}/perl"
26 description="
27 An API for simple XML files.
29 XML::Simple provides an easy API to read and write XML (especially
30 config files).  It is deprecated and its use is discouraged.
33 homepage=http://metacpan.org/release/XML-Simple
34 license="GPLv1+ | Artistic License"
36 tarname=${program}-${version}.tar.gz
38 # Remote source(s)
39 fetch=http://cpan.metacpan.org/authors/id/G/GR/GRANTM/$tarname
41 # Source documentation
42 docs="Changes LICENSE README"
43 docsdir="${docdir}/${pkgname}-${version}"
45 build() {
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     perl Makefile.PL INSTALLDIRS=vendor
57     make -j${jobs} DESTDIR="$destdir" install
59     # Strip remaining binaries and libraries
60     find "$destdir" -type f | xargs file | \
61      awk '/ELF/ && /executable/ || /shared object/' | \
62       cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
64     # Clean up inventory file for Perl
66     # This line removes 'destdir' adding the suffix '.lz' for manpages
67     find "${destdir}/" -type f -name '.packlist' | while read -r file
68     do
69          sed -i \
70           -e "s|${destdir}||g" \
71           -e "s|\.[0-9][a-z]*|&.lz|g" \
72           $file
73     done
75     find "${destdir}/" -type f -name 'perllocal.pod' -exec rm -f {} +
77     # Compress manual pages
78     if [ -d "${destdir}/$mandir" ] ; then
79         (
80             cd "${destdir}/$mandir"
81             find . -type f -exec lzip -9 '{}' +
82             find . -type l | while read -r file
83             do
84                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85                 rm -- "$file"
86             done
87         )
88     fi
90     # Copy documentation
91     mkdir -p "${destdir}${docsdir}"
92     cp -p $docs "${destdir}${docsdir}/"