See https://github.com/msys2/MINGW-packages/pull/21998
and 89521b9f8d
This is the first batch of removals to start things off.
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# $Id$
|
|
# Maintainer: J. Peter Mugaas <jpmugaas@suddenlink.net>
|
|
_realname=docbook-sgml31
|
|
pkgbase=mingw-w64-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
|
pkgver=3.1
|
|
pkgrel=2
|
|
pkgdesc="Legacy docbook-sgml (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64')
|
|
url='https://www.docbook.org/sgml/'
|
|
license=('MIT')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-sgml-common")
|
|
install=${_realname}-${MSYSTEM}.install
|
|
source=("https://www.docbook.org/sgml/${pkgver}/docbk31.zip")
|
|
sha256sums=('20261d2771b9a052abfa3d8fab1aa62be05791a010281c566f9073bf0e644538')
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
# This command removes the ENT definitions from the catalog file.
|
|
# This command replaces the DTDDECL catalog entry, which is not supported by Linux SGML tools,
|
|
# with the SGMLDECL catalog entry.
|
|
sed -i -e '/ISO 8879/d' \
|
|
-e 's|DTDDECL "-//OASIS//DTD DocBook V3.1//EN"|SGMLDECL|g' \
|
|
docbook.cat
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
|
|
local DTDDIR="${MINGW_PREFIX}/share/sgml/docbook-sgml-${pkgver}"
|
|
|
|
install -dm755 "$pkgdir/$DTDDIR"
|
|
install -m644 docbook.cat "$pkgdir/$DTDDIR/catalog"
|
|
install -m644 *.dtd *.mod *.dcl "$pkgdir/$DTDDIR"
|
|
}
|
|
|