update: matt 24.03
This commit is contained in:
parent
cbc9c9ef5a
commit
08d7824a73
@ -1,2 +1,5 @@
|
||||
# 4.5m1
|
||||
Updated the package description
|
||||
|
||||
# 4.5
|
||||
First version
|
||||
|
@ -1,8 +1,8 @@
|
||||
NAME="docbook-xml"
|
||||
DESC="Contains document type definitions for verification of XML data files against the DocBook rule set"
|
||||
VERSION="4.5"
|
||||
DESC="Standard XML documentation system for software and systems"
|
||||
VERSION="4.5m1"
|
||||
|
||||
FILES=("https://www.docbook.org/xml/${VERSION}/docbook-xml-${VERSION}.zip")
|
||||
FILES=("https://www.docbook.org/xml/${VERSION%m*}/docbook-xml-${VERSION%m*}.zip")
|
||||
HASHES=("03083e288e87a7e829e437358da7ef9e")
|
||||
|
||||
DEPENDS=("libxml2")
|
||||
@ -10,16 +10,16 @@ BUILD=("sgml-common")
|
||||
|
||||
PACKAGE() {
|
||||
mkdir "${NAME}"
|
||||
mv "${NAME}-${VERSION}.zip" "${NAME}"
|
||||
mv "${NAME}-${VERSION%m*}.zip" "${NAME}"
|
||||
|
||||
cd "${NAME}"
|
||||
unzip "${NAME}-${VERSION}.zip"
|
||||
unzip "${NAME}-${VERSION%m*}.zip"
|
||||
|
||||
install -v -d -m755 "${ROOTDIR}/usr/share/xml/docbook/xml-dtd-${VERSION}"
|
||||
install -v -d -m755 "${ROOTDIR}/usr/share/xml/docbook/xml-dtd-${VERSION%m*}"
|
||||
install -v -d -m755 "${ROOTDIR}/etc/xml"
|
||||
|
||||
cp -v -af --no-preserve=ownership docbook.cat *.dtd ent/ *.mod \
|
||||
"${ROOTDIR}/usr/share/xml/docbook/xml-dtd-${VERSION}"
|
||||
"${ROOTDIR}/usr/share/xml/docbook/xml-dtd-${VERSION%m*}"
|
||||
|
||||
cd .. && rm -rf "${NAME}"
|
||||
}
|
||||
|
@ -1,2 +1,5 @@
|
||||
# 1.79.2m1
|
||||
Updated the package description
|
||||
|
||||
# 1.79.2
|
||||
First version
|
||||
|
@ -1,10 +1,10 @@
|
||||
NAME="docbook-xsl-nons"
|
||||
DESC="Contains XSL stylesheets"
|
||||
VERSION="1.79.2"
|
||||
DESC="XSLT 1.0 Stylesheets for DocBook"
|
||||
VERSION="1.79.2m1"
|
||||
FILES=(
|
||||
"https://github.com/docbook/xslt10-stylesheets/releases/download/release/${VERSION}/docbook-xsl-nons-${VERSION}.tar.bz2"
|
||||
"https://github.com/docbook/xslt10-stylesheets/releases/download/release/${VERSION}/docbook-xsl-doc-${VERSION}.tar.bz2"
|
||||
"docbook-xsl-nons-${VERSION}-stack_fix-1.patch"
|
||||
"https://github.com/docbook/xslt10-stylesheets/releases/download/release/${VERSION%m*}/docbook-xsl-nons-${VERSION%m*}.tar.bz2"
|
||||
"https://github.com/docbook/xslt10-stylesheets/releases/download/release/${VERSION%m*}/docbook-xsl-doc-${VERSION%m*}.tar.bz2"
|
||||
"docbook-xsl-nons-${VERSION%m*}-stack_fix-1.patch"
|
||||
)
|
||||
HASHES=(
|
||||
"2666d1488d6ced1551d15f31d7ed8c38"
|
||||
@ -14,26 +14,26 @@ HASHES=(
|
||||
DEPENDS=("libxml2" "docbook-xml")
|
||||
|
||||
PACKAGE() {
|
||||
tar xf "${NAME}-${VERSION}.tar.bz2"
|
||||
cd "${NAME}-${VERSION}"
|
||||
tar xf "${NAME}-${VERSION%m*}.tar.bz2"
|
||||
cd "${NAME}-${VERSION%m*}"
|
||||
|
||||
patch -Np1 -i "../docbook-xsl-nons-${VERSION}-stack_fix-1.patch"
|
||||
tar -xf "../docbook-xsl-doc-${VERSION}.tar.bz2" --strip-components=1
|
||||
patch -Np1 -i "../docbook-xsl-nons-${VERSION%m*}-stack_fix-1.patch"
|
||||
tar -xf "../docbook-xsl-doc-${VERSION%m*}.tar.bz2" --strip-components=1
|
||||
|
||||
install -v -m755 -d "${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION}"
|
||||
install -v -m755 -d "${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION%m*}"
|
||||
cp -v -R VERSION assembly common eclipse epub epub3 extensions fo \
|
||||
highlighting html htmlhelp images javahelp lib manpages params \
|
||||
profiling roundtrip slides template tests tools webhelp website \
|
||||
xhtml xhtml-1_1 xhtml5 \
|
||||
"${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION}"
|
||||
ln -s VERSION "${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION}/VERSION.xsl"
|
||||
"${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION%m*}"
|
||||
ln -s VERSION "${ROOTDIR}/usr/share/xml/docbook/xsl-stylesheets-nons-${VERSION%m*}/VERSION.xsl"
|
||||
install -v -m644 -D README \
|
||||
"${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION}/README.txt"
|
||||
"${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION%m*}/README.txt"
|
||||
install -v -m644 RELEASE-NOTES* NEWS* \
|
||||
"${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION}"
|
||||
cp -v -R doc/* "${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION}"
|
||||
"${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION%m*}"
|
||||
cp -v -R doc/* "${ROOTDIR}/usr/share/doc/docbook-xsl-nons-${VERSION%m*}"
|
||||
|
||||
cd .. && rm -rf "${NAME}-${VERSION}"
|
||||
cd .. && rm -rf "${NAME}-${VERSION%m*}"
|
||||
}
|
||||
|
||||
INSTALL(){
|
||||
|
@ -1,3 +1,6 @@
|
||||
# 24.03
|
||||
Updated to the latest upstream release
|
||||
|
||||
# 24.02
|
||||
Updated to the latest upstream release
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# general info
|
||||
NAME="matt"
|
||||
DESC="The (new) MatterLinux package manager"
|
||||
VERSION="24.02"
|
||||
VERSION="24.03"
|
||||
|
||||
# required files
|
||||
FILES=(
|
||||
@ -9,7 +9,7 @@ FILES=(
|
||||
"config.ini"
|
||||
)
|
||||
HASHES=(
|
||||
"5212f5787c6ffe9f5dfb462c324df26d59175c4d4c6bd37cd0e6c1526228cc69"
|
||||
"84ecb66009a595c9f885d6335c338a62e19224cb5b7f538e3f55438e2f877f21"
|
||||
"1d916fe98811f11fe1f20aea78c29b3fdb37c08d3c5428dfdb774bd9953d3176"
|
||||
)
|
||||
KEEP=("etc/matt/config.ini")
|
||||
|
@ -1,2 +1,5 @@
|
||||
# 0.6.3m1
|
||||
Updated the package description
|
||||
|
||||
# 0.6.3
|
||||
First version
|
||||
|
@ -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(){
|
||||
|
Loading…
Reference in New Issue
Block a user