Files
contrib/0oldpackage/easypaint/actions.py
T
2026-06-27 23:27:13 +03:00

26 lines
624 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 pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import qt5
WorkDir = "EasyPaint-0.1.1/sources"
def setup():
#shelltools.cd("EasyPaint-0.1.1/sources")
#shelltools.system("lupdate easypaint.pro")
#shelltools.system("lrelease easypaint.pro")
qt5.configure("easypaint.pro")
def build():
qt5.make()
def install():
qt5.install()
#pisitools.dodoc("AUTHORS", "THANKS", "COPYING", "README.md")