package.py 690 B

12345678910111213141516171819
  1. #!/usr/bin/python
  2. import os
  3. def postInstall(fromVersion, fromRelease, toVersion, toRelease):
  4. os.system("/usr/bin/xmlcatalog --noout \
  5. --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
  6. --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 'bflang.dtd' \
  7. --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' '/usr/share/xml/bluefish-unstable' \
  8. /etc/xml/catalog")
  9. def preRemove():
  10. os.system("/usr/bin/xmlcatalog --noout \
  11. --del 'Bluefish/DTD/Bflang' \
  12. --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
  13. --del 'http://bluefish.openoffice.nl/DTD' \
  14. /etc/xml/catalog")