diff --git a/programming/language/python3/pyside6/actions.py b/programming/language/python3/pyside6/actions.py index c6ab0676df..87728bc61a 100644 --- a/programming/language/python3/pyside6/actions.py +++ b/programming/language/python3/pyside6/actions.py @@ -8,23 +8,26 @@ from pisi.actionsapi import get from pisi.actionsapi import cmaketools from pisi.actionsapi import shelltools + +WorkDir="pyside-setup-everywhere-src-%s/sources/pyside6" % get.srcVERSION() + def setup(): - shelltools.cd("sources/pyside6") + # shelltools.cd("sources/pyside6") shelltools.makedirs("build2") shelltools.cd("build2") - cmaketools.configure("-G Ninja -DCMAKE_INSTALL_PREFIX=/usr \ + cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTS=OFF \ -DPYTHON_EXECUTABLE=/usr/bin/python3", sourceDir="..") def build(): - shelltools.cd("sources/pyside6/build2") - shelltools.system("ninja") - # cmaketools.make() + shelltools.cd("build2") + # shelltools.system("ninja") + cmaketools.make() def install(): - shelltools.cd("sources/pyside6/build2") - shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) - # cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + shelltools.cd("build2") + # shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())