2018-08-15 04:35:16 +02:00
|
|
|
# Description: A collection of XSL stylesheets that are useful for performing transformations on XML DocBook files.
|
2010-12-16 01:50:11 +11:00
|
|
|
# URL: http://docbook.sourceforge.net/
|
2023-01-22 20:50:09 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2016-02-02 22:56:10 -06:00
|
|
|
# Depends on: libxslt docbook-xml
|
2010-12-16 01:50:11 +11:00
|
|
|
|
|
|
|
name=docbook-xsl
|
2018-08-15 04:35:16 +02:00
|
|
|
version=1.79.2
|
2023-01-27 17:48:01 -05:00
|
|
|
release=4
|
|
|
|
source=(https://github.com/docbook/xslt10-stylesheets/releases/download/release/$version/$name-nons-$version.tar.bz2 non-recursive-string-subst.patch)
|
2010-12-16 01:50:11 +11:00
|
|
|
|
|
|
|
build() {
|
2023-01-22 20:50:09 -05:00
|
|
|
cd $name-nons-$version
|
2010-12-16 01:50:11 +11:00
|
|
|
|
2023-01-27 17:48:01 -05:00
|
|
|
patch -Np2 -i $SRC/non-recursive-string-subst.patch
|
2010-12-16 01:50:11 +11:00
|
|
|
install -v -m 0755 -d $PKG/usr/share/xml/docbook/xsl-stylesheets-$version
|
|
|
|
|
2014-02-21 22:25:59 +11:00
|
|
|
cp -v -R \
|
2023-01-22 20:50:09 -05:00
|
|
|
VERSION common eclipse epub epub3 fo \
|
2012-12-23 13:43:45 +11:00
|
|
|
highlighting html htmlhelp images javahelp lib manpages \
|
2014-02-21 22:25:59 +11:00
|
|
|
params profiling roundtrip slides template tests tools website \
|
2023-01-22 20:50:09 -05:00
|
|
|
xhtml xhtml-1_1 xhtml5 \
|
2010-12-16 01:50:11 +11:00
|
|
|
$PKG/usr/share/xml/docbook/xsl-stylesheets-$version
|
|
|
|
|
2016-02-02 22:56:10 -06:00
|
|
|
ln -s VERSION $PKG/usr/share/xml/docbook/xsl-stylesheets-${version}/VERSION.xsl
|
2014-02-21 22:25:59 +11:00
|
|
|
|
|
|
|
ln -sf xsl-stylesheets-$version $PKG/usr/share/xml/docbook/xsl-stylesheets
|
|
|
|
|
2019-05-30 23:57:39 -05:00
|
|
|
find $PKG \( -name "NEWS*" -o -name "README*" -o -name "ChangeLog*" \) -delete
|
2010-12-16 01:50:11 +11:00
|
|
|
}
|