123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/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")
|