Files
2022-07-30 10:42:50 +03:00

37 lines
1.0 KiB
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 pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
def setup():
options_cfg = ''.join([
'-DUSE_TBB=ON ',
'-DUSE_VTK=OFF ',
'-DUSE_GL2PS=ON ',
'-DUSE_FFMPEG=ON ',
'-DUSE_FREEIMAGE=OFF ',
'-DINSTALL_DIR_LIB=/usr/lib ',
'-DCMAKE_BUILD_TYPE=Release ',
'-DCMAKE_INSTALL_PREFIX=/usr ',
])
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("%s" % options_cfg, sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("LICENSE*", "OCCT_LGPL*")