qt5-remoteobjects:first pisi rel

This commit is contained in:
blue-devil
2020-05-27 00:03:22 +03:00
parent c26ac34980
commit 5da30e891a
3 changed files with 116 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/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 get
from pisi.actionsapi import qt5
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
qt5.configure()
def build():
qt5.make()
qt5.make("docs")
def install():
qt5.install("INSTALL_ROOT=%s install_docs" % get.installDIR())
pisitools.dodoc("LICENSE*")