kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

build (246B)


      1 #!/usr/bin/env sh
      2 
      3 unzip docbook-xml-4.3.zip
      4 install -d -m 755 "$1/usr/share/xml/docbook/xml-dtd-4.3" &&
      5 	install -d -m 755 "$1/etc/xml" &&
      6 	chown -R root:root . &&
      7 	cp -af docbook.cat *.dtd ent/ *.mod \
      8 		"$1/usr/share/xml/docbook/xml-dtd-4.3"
      9