12345678910111213141516171819202122232425262728293031323334353637 |
- # -*- 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*")
|