This commit is contained in:
4fury-c3440d8
2023-01-29 08:33:23 +03:00
parent 49e2538f97
commit 018a28d752
2 changed files with 17 additions and 14 deletions
+5 -9
View File
@@ -2,22 +2,18 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools, pisitools
def setup():
shelltools.system("sed -i s/Description/description/ meson.build")
#pisitools.dosed("meson.build", "Description", "description")
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "TODO")