meson move to core

This commit is contained in:
IdrisKalp
2019-12-10 19:28:33 +03:00
parent 83edd48aa3
commit 2dda25348b
5 changed files with 251 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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*")