actions.py 600 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file http://www.gnu.org/licenses/gpl.txt
  6. from pisi.actionsapi import shelltools
  7. from pisi.actionsapi import pythonmodules
  8. from pisi.actionsapi import pisitools
  9. from pisi.actionsapi import get
  10. def build():
  11. pythonmodules.compile(pyVer="3")
  12. def install():
  13. pythonmodules.install(pyVer="3")
  14. pisitools.insinto("/usr/share/vim/vimfiles", "syntax-highlighting/vim/*")
  15. pisitools.remove("/usr/share/vim/vimfiles/README")
  16. pisitools.dodoc("COPYING", "README*")