void-packages/srcpkgs/xmlcatmgr/template

65 lines
2.1 KiB
Plaintext

# Template build file for 'xmlcatmgr'.
pkgname=xmlcatmgr
version=2.2
revision=2
build_style=gnu-configure
short_desc="XML and SGML catalog manager"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://xmlcatmgr.sourceforge.net"
license="BSD"
distfiles="$SOURCEFORGE_SITE/xmlcatmgr/$pkgname-$version.tar.gz"
checksum=ea1142b6aef40fbd624fc3e2130cf10cf081b5fa88e5229c92b8f515779d6fdc
long_desc="
XML Catalog Manager (xmlcatmgr in its short form) is a small utility used
to manipulate SGML and XML catalogs. It is extremely small and lightweight,
specially designed to be run from packaging systems. Basically, it allows
adding and removing entries from catalogs in a completely automated way.
A catalog is a lookup mechanism used to translate entities into other
different entities. They can, for example, map public identifiers to
local files or URIs. This allows you to tell the parser where to look
for entities without having to modify the original document source."
if [ -n "$CROSS_BUILD" ]; then
makedepends="xmlcatmgr"
fi
pre_install() {
if [ -n "$CROSS_BUILD" ]; then
_xmlcatmgr="xmlcatmgr"
else
_xmlcatmgr="./xmlcatmgr"
fi
# Create XML and SGML catalogs once built.
echo "=> Creating SGML catalogs..."
${_xmlcatmgr} -sc catalog.etc.sgml create
${_xmlcatmgr} -sc catalog.sgml create
${_xmlcatmgr} -sc catalog.etc.sgml add CATALOG /usr/share/sgml/catalog
echo "=> Creating XML catalogs..."
${_xmlcatmgr} -c catalog.etc.xml create
${_xmlcatmgr} -c catalog.xml create
${_xmlcatmgr} -c catalog.etc.xml add nextCatalog /usr/share/xml/catalog
}
post_install() {
# Install the XML/SGML catalog files.
echo "=> Installing XML/SGML catalogs."
chmod 644 $wrksrc/catalog.*
install -Dm644 catalog.sgml ${DESTDIR}/usr/share/sgml/catalog
install -Dm644 catalog.etc.sgml ${DESTDIR}/etc/sgml/catalog
install -Dm644 catalog.xml ${DESTDIR}/usr/share/xml/catalog
install -Dm644 catalog.etc.xml ${DESTDIR}/etc/xml/catalog
}
xmlcatmgr_package() {
conf_files="
/etc/sgml/catalog
/etc/xml/catalog
/usr/share/sgml/catalog
/usr/share/xml/catalog"
pkg_install() {
vmove etc
vmove usr
}
}