update: matt 24.03

This commit is contained in:
ngn
2024-08-22 08:47:06 +03:00
parent cbc9c9ef5a
commit 08d7824a73
8 changed files with 45 additions and 33 deletions

View File

@ -1,10 +1,10 @@
NAME="sgml-common"
DESC="Contains install-catalog which is useful for creating and maintaining centralized SGML catalogs"
VERSION="0.6.3"
DESC="Collection of all the free software tools you need to work on and format DocBook documents"
VERSION="0.6.3m1"
FILES=(
"https://sourceware.org/ftp/docbook-tools/new-trials/SOURCES/sgml-common-${VERSION}.tgz"
"sgml-common-${VERSION}-manpage-1.patch"
"https://sourceware.org/ftp/docbook-tools/new-trials/SOURCES/sgml-common-${VERSION%m*}.tgz"
"sgml-common-${VERSION%m*}-manpage-1.patch"
)
HASHES=(
"103c9828f24820df86e55e7862e28974"
@ -14,10 +14,10 @@ HASHES=(
DEPENDS=("bash")
PACKAGE() {
tar xf "${NAME}-${VERSION}.tgz"
cd "${NAME}-${VERSION}"
tar xf "${NAME}-${VERSION%m*}.tgz"
cd "${NAME}-${VERSION%m*}"
patch -Np1 -i "../sgml-common-${VERSION}-manpage-1.patch"
patch -Np1 -i "../sgml-common-${VERSION%m*}-manpage-1.patch"
autoreconf -f -i
./configure --prefix=/usr --sysconfdir=/etc
@ -25,7 +25,7 @@ PACKAGE() {
make DESTDIR="${ROOTDIR}" install
make DESTDIR="${ROOTDIR}" docdir="/usr/share/doc" install
cd .. && rm -rf ${NAME}-${VERSION}
cd .. && rm -rf "${NAME}-${VERSION%m*}"
}
INSTALL(){