bf96e50e44
- Introduced valgrind with a patch to respect flags and updated its configuration. - Added Vulkan ICD loader with CMake build configuration. - Implemented Waf build system with a custom build script and configuration. - Included Wayland protocols with Meson build system. - Added xcb-util-keysyms with autotools configuration. - Introduced Yasm with multiple patches for compatibility and improvements. - Added Yelp tools and XSL with Meson build configurations and necessary patches for POSIX compliance.
29 lines
679 B
Bash
29 lines
679 B
Bash
#!/bin/sh
|
|
set -eu
|
|
cd .
|
|
|
|
DTDDIR="usr/share/sgml/docbook-sgml-4.5"
|
|
|
|
sed -i \
|
|
-e '/ISO 8879/d' \
|
|
-e '/gml/d' \
|
|
docbook.cat
|
|
|
|
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
|
|
|
|
install -dm755 "$DESTDIR/$DTDDIR"
|
|
install -m644 docbook.cat "$DESTDIR/$DTDDIR/catalog"
|
|
install -m644 ./*.dtd ./*.mod ./*.dcl "$DESTDIR/$DTDDIR"
|