actions.py 518 B

1234567891011121314151617181920212223
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file https://www.gnu.org/licenses/gpl-3.0.txt
  6. from pisi.actionsapi import autotools, pisitools, get
  7. WorkDir = "."
  8. def setup():
  9. pass
  10. def build():
  11. autotools.make("-C lexilla/src")
  12. autotools.make("-C scintilla/gtk")
  13. autotools.make("-C scite/gtk prefix=/usr")
  14. def install():
  15. autotools.make("-C scite/gtk DESTDIR=%s install" % get.installDIR())
  16. pisitools.dosym("/usr/bin/SciTE", "/usr/bin/scite")