package.py 465 B

12345678910111213
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. def postInstall(fromVersion, fromRelease, toVersion, toRelease):
  5. if not os.path.exists("/usr/local/Brother/cupswrapper/cupswrapperDCP135c-1.0.1"):
  6. os.system("/usr/local/Brother/cupswrapper/cupswrapperDCP135c-1.0.1 -i")
  7. def preRemove():
  8. if os.path.exists("/usr/local/Brother/cupswrapper/cupswrapperDCP135c-1.0.1"):
  9. os.system("/usr/local/Brother/cupswrapper/cupswrapperDCP135c-1.0.1 -e")