summaryrefslogtreecommitdiff
path: root/recipes/gstreamer-1.0.recipe
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2017-03-05 16:35:15 -0500
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-05-09 08:47:22 -0400
commitdaa9187848c6d0aaba0b40e64e4efba597300db7 (patch)
treefbcab6be75c16bb41a6a7abc4f9ae83b61ce0f44 /recipes/gstreamer-1.0.recipe
parent7191a09491669186c480d360f4b6af75b1e22ee5 (diff)
Remove duplicated static gstreamer build
The plugin interface now supports building once for both static and dynamic modules. https://bugzilla.gnome.org/show_bug.cgi?id=779344
Diffstat (limited to 'recipes/gstreamer-1.0.recipe')
-rw-r--r--recipes/gstreamer-1.0.recipe5
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes/gstreamer-1.0.recipe b/recipes/gstreamer-1.0.recipe
index 373418a0..3b8bc34b 100644
--- a/recipes/gstreamer-1.0.recipe
+++ b/recipes/gstreamer-1.0.recipe
@@ -4,7 +4,7 @@ import shutil
class Recipe(custom.GStreamer):
name = 'gstreamer-1.0'
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
- configure_options = "--enable-static --program-prefix= --disable-examples "
+ configure_options = "--enable-static --enable-static-plugins --program-prefix= --disable-examples "
remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gstreamer'}
deps = ['glib', 'gtk-doc-lite']
@@ -22,6 +22,9 @@ class Recipe(custom.GStreamer):
}
files_plugins_core = ['lib/gstreamer-1.0/libgstcoreelements%(mext)s']
+ files_plugins_core_devel = [
+ 'lib/gstreamer-1.0/libgstcoreelements.a', 'lib/gstreamer-1.0/libgstcoreelements.la',
+ ]
files_misc = ['libexec/gstreamer-1.0/gst-plugin-scanner%(bext)s']