summaryrefslogtreecommitdiff
path: root/recipes/gst-plugins-ugly-1.0.recipe
blob: 0638fe9d5ad1dad793bd9adee2423a03d4f4ffc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python


class Recipe(recipe.Recipe):
    name = 'gst-plugins-ugly-1.0'
    version = '1.0'
    licenses = [License.LGPLv2Plus]
    config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
    configure_options = "--disable-introspection --disable-examples --disable-iec958 --disable-mpegstream --disable-cdio --disable-lame --disable-sidplay --disable-twolame --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer Ugly Plugins (GStreamer SDK)' "
    commit = 'upstream/1.0'
    deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'a52dec', 'opencore-amr',
            'libdvdread', 'libmpeg2', 'libmad', 'x264']

    files_plugins_codecs_restricted = [
             'lib/gstreamer-1.0/libgsta52dec%(mext)s',
             'lib/gstreamer-1.0/libgstamrnb%(mext)s',
             'lib/gstreamer-1.0/libgstamrwbdec%(mext)s',
             'lib/gstreamer-1.0/libgstasf%(mext)s',
             'lib/gstreamer-1.0/libgstmad%(mext)s',
             'lib/gstreamer-1.0/libgstmpeg2dec%(mext)s',
             'lib/gstreamer-1.0/libgstxingmux%(mext)s',
             'lib/gstreamer-1.0/libgstrmdemux%(mext)s',
             'lib/gstreamer-1.0/libgstx264%(mext)s',
    ]

    files_plugins_dvd = [
             'lib/gstreamer-1.0/libgstdvdlpcmdec%(mext)s',
             'lib/gstreamer-1.0/libgstdvdread%(mext)s',
    ]

    files_lang = ['gst-plugins-ugly-1.0']

    def prepare(self):
        self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-ugly'))
        self.remotes['upstream'] = self.remotes['origin']

        self.append_env['CFLAGS'] = " -Wno-error "
        self.append_env['CXXFLAGS'] = " -Wno-error "
        self.append_env['CPPFLAGS'] = " -Wno-error "
        if self.config.target_platform != Platform.LINUX:
            self.configure_options += ' --disable-gtk-doc'
        if self.config.variants.nodebug:
            self.configure_options += ' --disable-gst-debug'