35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2011 TUBITAK/BILGEM
|
|
# Licensed under the GNU General Public License, version 2.
|
|
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
|
|
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.makedirs("build2")
|
|
shelltools.cd("build2")
|
|
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_TESTS=OFF \
|
|
-DSHIBOKEN_PYTHON_LIBRARIES=`pkgconf python3-embed --libs` \
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python3", sourceDir="..")
|
|
|
|
|
|
def build():
|
|
shelltools.cd("build2")
|
|
# shelltools.system("ninja")
|
|
cmaketools.make()
|
|
|
|
|
|
def install():
|
|
shelltools.cd("build2")
|
|
# shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|