123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- # Build recipe for docbook-xsl.
- #
- # Copyright (c) 2019 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=docbook-xsl-nons
- pkgname=docbook-xsl
- version=1.79.2
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/docbook"
- tarname=${program}-${version}.tar.bz2
- # Remote source(s)
- fetch=http://github.com/docbook/xslt10-stylesheets/releases/download/release/${version}/$tarname
- description="
- The DocBook XSL Stylesheets.
- The DocBook XSL Stylesheets package contains XSL stylesheets.
- These are useful for performing transformations on XML DocBook files.
- "
- homepage=http://www.docbook.org
- license=Custom
- # Source documentation
- docs="AUTHORS BUGS COPYING NEWS README RELEASE-NOTES.txt TODO VERSION"
- docsdir="${docdir}/${pkgname}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Apply a patch from "Beyond Linux From Scratch"
- patch -Np1 -i "${worktree}/patches/docbook-xsl/docbook-xsl-nons-1.79.2-stack_fix-1.patch"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- mkdir -p "${destdir}/usr/share/xml/docbook/xsl-stylesheets-nons-${version}"
- cp -R VERSION assembly common eclipse epub epub3 extensions fo \
- highlighting html htmlhelp images javahelp lib manpages params \
- profiling roundtrip slides template tests tools webhelp website \
- xhtml xhtml-1_1 xhtml5 \
- "${destdir}/usr/share/xml/docbook/xsl-stylesheets-nons-${version}"
- (
- cd "${destdir}/usr/share/xml/docbook/xsl-stylesheets-nons-${version}"
- ln -s VERSION VERSION.xsl
- )
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"/
- # Create config directory
- mkdir -p "${destdir}/etc/xml"
- # Insert post-install script manually
- mkdir -p "${destdir}/var/lib/qi"
- cat << EOF > "${destdir}/var/lib/qi/${full_pkgname}.sh"
- # XML catalog
- if test ! -e etc/xml/catalog
- then
- echo "Creating etc/xml/catalog (from docbook-xsl-${version}) ..."
- xmlcatalog --noout --create etc/xml/catalog
- fi
- echo "Adding XML (XSL) definitions to etc/xml/catalog ..."
- xmlcatalog --noout --add "rewriteSystem" \\
- "http://cdn.docbook.org/release/xsl-nons/${version}" \\
- "file://usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- xmlcatalog --noout --add "rewriteURI" \\
- "http://cdn.docbook.org/release/xsl-nons/${version}" \\
- "file://usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- xmlcatalog --noout --add "rewriteSystem" \\
- "http://cdn.docbook.org/release/xsl-nons/current" \\
- "file://usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- xmlcatalog --noout --add "rewriteURI" \\
- "http://cdn.docbook.org/release/xsl-nons/current" \\
- "file://usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- # Sourceforge URIs
- xmlcatalog --noout --add "rewriteSystem" \\
- "http://docbook.sourceforge.net/release/xsl/current" \\
- "/usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- xmlcatalog --noout --add "rewriteURI" \\
- "http://docbook.sourceforge.net/release/xsl/current" \\
- "/usr/share/xml/docbook/xsl-stylesheets-nons-${version}" \\
- etc/xml/catalog
- EOF
- }
|