Files
main/programming/library/wlroots0.19/actions.py
T
2026-07-13 14:49:44 +03:00

25 lines
568 B
Python

#!/usr/bin/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 mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
mesontools.configure("-Dsession=enabled \
-Dbackends=drm,libinput,x11 \
-Drenderers='gles2, vulkan'")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("LICENSE", "README.md")