grim add to repo

This commit is contained in:
idriskalp
2022-02-21 23:43:42 +03:00
parent 3241686ed5
commit c0ca1169f5
3 changed files with 87 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
def setup():
mesontools.configure("-Djpeg=enabled \
-Dbash-completions=true \
")
def build():
mesontools.build()
def install():
mesontools.install()
#shelltools.cd("..")
pisitools.dodoc("LICENSE", "README.md")