actions.py 321 B

123456789101112131415
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. from pisi.actionsapi import get, pisitools, shelltools
  4. NoStrip = ["/usr"]
  5. IgnoreAutodep = True
  6. def setup():
  7. shelltools.system("pwd")
  8. shelltools.system("ar xf atom-amd64.deb")
  9. shelltools.system("tar xf data.tar.xz")
  10. def install():
  11. pisitools.insinto("/", "usr")