47 lines
1.6 KiB
Text
47 lines
1.6 KiB
Text
# Template file for 'docbook-xml'
|
|
pkgname=docbook-xsl
|
|
version=1.77.1
|
|
revision=2
|
|
makedepends="xmlcatmgr docbook-xml>=4.2"
|
|
short_desc="Docbook XSL modular stylesheet"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://docbook.sourceforge.net/"
|
|
license="MIT"
|
|
distfiles="${SOURCEFORGE_SITE}/docbook/$pkgname-$version.tar.bz2"
|
|
checksum=24c6c4413f71f9a2c000fa21be76c58f53db1baa42f17b02845e1c2c0aeb7cd5
|
|
long_desc="
|
|
The DocBook XSL stylesheets provide a serie of ready-to-use templates to
|
|
process documents based on the DocBook XML DTD. They can generate different
|
|
types of output files, like XHTML, slides, manpages, JavaDoc...
|
|
|
|
They are written in a modular fashion. Each of the HTML and FO stylesheets
|
|
starts with a driver file that assembles a collection of component files
|
|
into a complete stylesheet. This modular design puts similar things together
|
|
into smaller files that are easier to write and maintain than one big
|
|
stylesheet."
|
|
|
|
do_install() {
|
|
local xslmods="common eclipse epub fo highlighting html htmlhelp \
|
|
images javahelp lib manpages params profiling \
|
|
roundtrip slides website xhtml xhtml-1_1"
|
|
|
|
vinstall catalog.xml 644 usr/share/xsl/docbook
|
|
vinstall VERSION 644 usr/share/xsl/docbook
|
|
vinstall VERSION.xsl 644 usr/share/xsl/docbook
|
|
|
|
for dir in ${xslmods}; do
|
|
vmkdir usr/share/xsl/docbook/${dir}
|
|
cp -a ${dir}/* ${DESTDIR}/usr/share/xsl/docbook/${dir}/
|
|
done
|
|
|
|
vinstall COPYING 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|
|
docbook-xsl_package() {
|
|
depends="${makedepends}"
|
|
noarch="yes"
|
|
xml_entries="nextCatalog /usr/share/xsl/docbook/catalog.xml --"
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|