23 lines
709 B
Bash
23 lines
709 B
Bash
# Template file for 'ISOEnts'
|
|
pkgname=ISOEnts
|
|
version=1986
|
|
revision=3
|
|
create_wrksrc=yes
|
|
noarch=yes
|
|
hostmakedepends="unzip bsdtar"
|
|
depends="xmlcatmgr"
|
|
sgml_entries="CATALOG /usr/share/sgml/iso8879/catalog --"
|
|
short_desc="Character entity sets from ISO 8879:1986 (SGML)"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.oasis-open.org"
|
|
license="Public domain"
|
|
distfiles="http://www.oasis-open.org/cover/${pkgname}.zip"
|
|
checksum=dce4359a3996ed2fd33ad5eaa11a9bcfc24b5b06992e24295132b06db19a99b2
|
|
|
|
do_install() {
|
|
local dir=${DESTDIR}/usr/share/sgml/iso8879
|
|
|
|
install -d ${dir}
|
|
bsdtar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}.zip -C ${dir}
|
|
install -m644 ${FILESDIR}/catalog ${dir}
|
|
}
|