Files
main/programming/misc/qml-box2d/actions.py
T
2021-04-24 01:32:45 +03:00

19 lines
329 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install()