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.
23 # Define hash tag to categorize the package name output
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
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}"
48 unpack "${tardir}/$tarname"
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
70 -e "s|${destdir}||g" \
71 -e "s|\.[0-9][a-z]*|&.lz|g" \
75 find "${destdir}/" -type f -name 'perllocal.pod' -exec rm -f {} +
77 # Compress manual pages
78 if [ -d "${destdir}/$mandir" ] ; then
80 cd "${destdir}/$mandir"
81 find . -type f -exec lzip -9 '{}' +
82 find . -type l | while read -r file
84 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
91 mkdir -p "${destdir}${docsdir}"
92 cp -p $docs "${destdir}${docsdir}/"