12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #!/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 autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- j = ''.join([
- ' --enable-gstreamer-thumbnailer',
- ' --enable-poppler-thumbnailer',
- ' --enable-desktop-thumbnailer',
- ' --enable-pixbuf-thumbnailer',
- ' --enable-ffmpeg-thumbnailer',
- ' --enable-cover-thumbnailer',
- ' --enable-font-thumbnailer',
- ' --enable-jpeg-thumbnailer',
- ' --enable-raw-thumbnailer',
- ' --enable-odf-thumbnailer',
- ' --enable-xdg-cache',
- ' --disable-static',
- ' --disable-gepub-thumbnailer '
- ])
- def setup():
- # pisitools.dosed("configure", "libopenraw-gnome-0\.1", "libopenraw-gnome-0.3")
- autotools.configure(j)
- pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- # unneeded systemd service file
- pisitools.removeDir("/usr/lib/systemd")
- pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS")
|