30 lines
715 B
Python
30 lines
715 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
|
|
|
from pisi.actionsapi import cmaketools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
i = ''.join([
|
|
' -DCMAKE_INSTALL_PREFIX=/usr',
|
|
' -DCMAKE_INSTALL_LIBDIR=lib',
|
|
' -DBUILD_SHARED_LIBS=ON',
|
|
' -DGLM_TEST_ENABLE=ON -L ',
|
|
' -DCMAKE_INSTALL_DATAROOTDIR=/usr/lib/cmake '
|
|
])
|
|
|
|
def setup():
|
|
cmaketools.configure(i)
|
|
|
|
def build():
|
|
cmaketools.make()
|
|
|
|
def install():
|
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("copying.txt", "doc/manual.pdf")
|
|
pisitools.dohtml("doc/*")
|