123456789101112131415161718192021222324 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import pythonmodules
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- def build():
- pythonmodules.compile(pyVer="3")
- def install():
- pythonmodules.install(pyVer="3")
-
- pisitools.insinto("/usr/share/vim/vimfiles", "data/syntax-highlighting/vim/*")
- pisitools.insinto("/usr/share/emacs/site-lisp", "data/syntax-highlighting/emacs/*")
- pisitools.insinto("/usr/share/zsh/site-functions", "data/shell-completions/zsh/*")
- pisitools.remove("/usr/share/vim/vimfiles/README")
-
- pisitools.dodoc("COPYING", "README*")
|