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