Files
main/multimedia/sound/libcanberra/actions.py
T
2025-11-03 16:44:14 +03:00

39 lines
1.2 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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.system("./autogen.sh")
#autotools.autoreconf("-fi")
autotools.configure("--disable-oss \
--disable-lynx \
--enable-gstreamer \
--enable-gtk3 \
--enable-pulse \
--enable-alsa \
--enable-null \
--enable-tdb \
--with-builtin=dso \
--with-systemd-unit-dir=no \
--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
#pisitools.remove("/usr/lib/gtk-3.0/modules/libcanberra-gtk-module.so")
pisitools.removeDir("/usr/share/gtk-doc")
pisitools.dodoc("LGPL")