Initial build of lutris and its deps

This commit is contained in:
Bahar KURT
2025-09-04 13:10:33 +03:00
parent 93f8ecb06e
commit f86bcfcbae
4 changed files with 177 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import mesontools
from pisi.actionsapi import shelltools
def setup():
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("LICENSE*", "README*")