website: move footer.t2t to the section that belongs (according to language)
[dragora.git] / recipes / libs / libxslt / recipe
blob0f12ab8f58e8d1c2bd10e5507b008bd626b5920d
1 # Build recipe for libxslt.
3 # Copyright (C) 2018, 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=libxslt
18 version=1.1.33
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 # The installation of this package replaces to
25 replace=libxslt_pass1
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=http://xmlsoft.org/sources/$tarname
32 description="
33 XSLT support for libxml2.
35 The libxslt package contains XSLT libraries.  These are useful for
36 extending libxml2 libraries in order to support XSLT files.
39 homepage=http://xmlsoft.org
40 license=MIT
42 docs="AUTHORS ChangeLog Copyright NEWS README TODO"
43 docsdir="${docdir}/${program}-${pkgversion}"
45 # The source has a custom directory
46 srcdir="${program}-${version%-*}"
48 build()
50     set -e
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --with-html-dir=${docsdir}/html \
65      --enable-static=no \
66      --enable-shared=yes \
67      --build="$(cc -dumpmachine)"
68      
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Compress info documents deleting index file for the package
73     if test -d "${destdir}/$infodir"
74     then
75         rm -f "${destdir}/${infodir}/dir"
76         lzip -9 "${destdir}/${infodir}"/*
77     fi
79     # Compress and link man pages (if needed)
80     if test -d "${destdir}/$mandir"
81     then
82         (
83             cd "${destdir}/$mandir"
84             find . -type f -exec lzip -9 '{}' +
85             find . -type l | while read -r file
86             do
87                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
88                 rm -- "$file"
89             done
90         )
91     fi
92      
93     # Copy documentation
94     mkdir -p "${destdir}${docsdir}"
95     cp -p $docs "${destdir}${docsdir}"