blob: 95c8ab450d9b03384b318c70cf23d4b44c66d2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell
class Recipe(custom.GStreamerStatic):
name = 'gnonlin-static'
version = '0.10.17'
gstreamer_version = '0.10'
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
extra_configure_options = "--disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer GNonLin (GStreamer SDK)' "
make_check = None
remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gnonlin'}
deps = ['gstreamer', 'gst-plugins-base' ]
files_plugins_gnl_devel = ['libgnl']
|