27 lines
839 B
Python
27 lines
839 B
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
|
|
|
|
def setup():
|
|
shelltools.cd("sources/shiboken2")
|
|
shelltools.makedirs("build3")
|
|
shelltools.cd("build3")
|
|
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_TESTS=OFF \
|
|
-DUSE_PYTHON_VERSION=3", sourceDir="..")
|
|
|
|
|
|
def build():
|
|
shelltools.cd("sources/shiboken2/build3")
|
|
cmaketools.make()
|
|
|
|
def install():
|
|
shelltools.cd("sources/shiboken2/build3")
|
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) |