You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
3 years ago
|
# Maintainer: Felix Yan <felixonmars@gmail.com>
|
||
|
# Contributor: Andrew Fyfe <andrew@neptune-one.net>
|
||
|
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
|
||
|
|
||
|
pkgname=docbook-sgml
|
||
|
pkgver=4.5
|
||
|
pkgrel=6
|
||
|
pkgdesc='Document type definitions for verification of SGML data files against the DocBook rule set.'
|
||
|
arch=('any')
|
||
|
url='http://www.docbook.org/sgml/'
|
||
|
license=('MIT')
|
||
|
depends=('sgml-common')
|
||
|
install='docbook-sgml.install'
|
||
|
source=("http://www.docbook.org/sgml/${pkgver}/docbook-${pkgver}.zip")
|
||
|
sha256sums=('8043e514e80c6c19cb146b5d37937d1305bf3abf9b0097c36df7f70f611cdf43')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir"
|
||
|
|
||
|
local DTDDIR="usr/share/sgml/docbook-sgml-$pkgver"
|
||
|
|
||
|
sed -i \
|
||
|
-e '/ISO 8879/d' \
|
||
|
-e '/gml/d' \
|
||
|
docbook.cat
|
||
|
|
||
|
# Add support for previous versions.
|
||
|
cat >> docbook.cat << "EOF"
|
||
|
|
||
|
-- Begin Single Major Version catalog changes --
|
||
|
|
||
|
PUBLIC "-//OASIS//DTD DocBook V4.4//EN" "docbook.dtd"
|
||
|
PUBLIC "-//OASIS//DTD DocBook V4.3//EN" "docbook.dtd"
|
||
|
PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "docbook.dtd"
|
||
|
PUBLIC "-//OASIS//DTD DocBook V4.1//EN" "docbook.dtd"
|
||
|
PUBLIC "-//OASIS//DTD DocBook V4.0//EN" "docbook.dtd"
|
||
|
|
||
|
-- End Single Major Version catalog changes --
|
||
|
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir"
|
||
|
|
||
|
local DTDDIR="usr/share/sgml/docbook-sgml-$pkgver"
|
||
|
|
||
|
install -dm755 "$pkgdir/$DTDDIR"
|
||
|
install -m644 docbook.cat "$pkgdir/$DTDDIR/catalog"
|
||
|
install -m644 *.dtd *.mod *.dcl "$pkgdir/$DTDDIR"
|
||
|
}
|