diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-14 09:30:04 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-14 14:39:42 -0400 |
commit | 54ad17bdd35f78edbec01166d2509291b2ca4c5b (patch) | |
tree | 056127662adceb0f33c13275d476f3fdc2c8fd98 /recipes/gst-rtsp-server-1.0.recipe | |
parent | e5630d47edfff26ec6b1a36a9234d7c9a89dc5b9 (diff) |
recipes: Centralize common recipe values
This is done by introducing a new Recipe base class specific
to GStreamer recipes. This will speed changing version while
reducing redundancy.
Diffstat (limited to 'recipes/gst-rtsp-server-1.0.recipe')
-rw-r--r-- | recipes/gst-rtsp-server-1.0.recipe | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes/gst-rtsp-server-1.0.recipe b/recipes/gst-rtsp-server-1.0.recipe index 8a63a7a7..17199748 100644 --- a/recipes/gst-rtsp-server-1.0.recipe +++ b/recipes/gst-rtsp-server-1.0.recipe @@ -1,13 +1,10 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -class Recipe(recipe.Recipe): +class Recipe(recipe.Recipe, custom.GStreamer): name = 'gst-rtsp-server-1.0' - version = '1.9' - licenses = [License.LGPLv2Plus] config_sh = 'sh ./autogen.sh --noconfigure && ./configure' configure_options = "--disable-examples --enable-static " remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-rtsp-server'} - commit = '1.9.2' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0' ] files_devel = ['include/gstreamer-1.0/gst/rtsp-server', 'lib/pkgconfig/gstreamer-rtsp-server-1.0.pc'] |