Files
main/multimedia/sound/openal/actions.py
T
Kamil ATLI b4a17ddd77 openal
2021-02-17 13:22:56 +03:00

51 lines
1.7 KiB
Python

#!/usr/bin/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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
#WorkDir = "openal-soft-%s" % get.srcVERSION()
def setup():
options = "-DALSA=1 \
-DPULSEAUDIO=1 \
-DOSS=1 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DEXAMPLES=OFF \
-DALSOFT_TESTS=OFF"
if get.buildTYPE() == "emul32":
options += " -DCMAKE_INSTALL_PREFIX=/emul32 \
-DCMAKE_INSTALL_LIBDIR=/usr/lib32 \
-DALSOFT_NO_QT5=TRUE \
-DLIB_SUFFIX=32 \
-DALSOFT_TESTS=OFF \
-DALSOFT_EXAMPLES=OFF \
-DALSOFT_UTILS=OFF"
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
cmaketools.configure(options)
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# is there any "libdir" prefix for cmake ?
if get.buildTYPE() == "emul32":
from distutils.dir_util import copy_tree
#copy_tree("%s/emul32/lib32/" % get.installDIR(), "%s/usr/lib32" % get.installDIR())
pisitools.removeDir("/emul32")
pisitools.dosed("%s/usr/lib32/pkgconfig/openal.pc" % get.installDIR(), "emul32", "usr")
pisitools.dosed("%s/usr/lib32/cmake/OpenAL/OpenALConfig.cmake" % get.installDIR(), "emul32", "usr")
return
pisitools.dodoc("COPYING", "alsoftrc.sample")