recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / perl / xml-sax_expat / recipe
blob67f4169ba988b28e127d8728b8c5974897a3c26d
1 # Build recipe for xml-sax-expat.
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-SAX-Expat
18 version=0.51
19 release=1
21 pkgname=xml-sax_expat
23 # Define a category for the output of the package name
24 pkgcategory=perl
26 description="
27 SAX2 driver for Expat (XML::Parser).
29 XML::SAX::Expat is an implementation of a SAX2 driver sitting on top of
30 Expat (XML::Parser).
33 homepage=http://metacpan.org/release/XML-SAX-Expat
34 license="The Perl 5 License"
36 tarname=${program}-${version}.tar.gz
38 # Remote source(s)
39 fetch=http://cpan.metacpan.org/authors/id/B/BJ/BJOERN/$tarname
41 # Source documentation
42 docs="Changes 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} pure_install doc_install DESTDIR="$destdir"
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}/"