diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-12 14:10:22 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-12 14:10:58 +0100 |
commit | 654d7e6028462297405028dd40b929cdbbac374d (patch) | |
tree | ad5d2d461fcb2488275a8fcc7e6f251dace62636 | |
parent | 0ed9ffe56701ec2869130f2c8c3a79dd37e182c7 (diff) |
gst-plugins-base: Use Tremor on IOS too
-rw-r--r-- | recipes/gst-plugins-base-1.0.recipe | 5 | ||||
-rw-r--r-- | recipes/gst-plugins-base-static.recipe | 6 | ||||
-rw-r--r-- | recipes/gst-plugins-base.recipe | 5 |
3 files changed, 12 insertions, 4 deletions
diff --git a/recipes/gst-plugins-base-1.0.recipe b/recipes/gst-plugins-base-1.0.recipe index 1b185e20..b01ab6fb 100644 --- a/recipes/gst-plugins-base-1.0.recipe +++ b/recipes/gst-plugins-base-1.0.recipe @@ -11,7 +11,7 @@ class Recipe(recipe.Recipe): commit = 'upstream/1.0' deps = ['glib', 'gstreamer-1.0', 'libogg', 'pango', 'libtheora', 'libvisual', 'libvorbis', 'zlib', 'orc'] - platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ] } + platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ], Platform.IOS: [ 'tremor' ] } use_system_libs = True files_bins = ['gst-discoverer-1.0', 'gst-visualize-1.0'] @@ -88,6 +88,9 @@ class Recipe(recipe.Recipe): platform_files_codecs = { Platform.ANDROID: [ 'lib/gstreamer-1.0/libgstivorbisdec%(mext)s', + ], + Platform.IOS: [ + 'lib/gstreamer-1.0/libgstivorbisdec%(mext)s', ] } diff --git a/recipes/gst-plugins-base-static.recipe b/recipes/gst-plugins-base-static.recipe index 410638a1..2246b328 100644 --- a/recipes/gst-plugins-base-static.recipe +++ b/recipes/gst-plugins-base-static.recipe @@ -7,7 +7,7 @@ class Recipe(custom.GStreamerStatic): extra_configure_options = "--disable-gst_v4l --disable-gnome_vfs" deps = ['glib', 'gstreamer', 'libogg', 'pango', 'libtheora', 'libvisual', 'libvorbis', 'zlib', 'orc'] - platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ] } + platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ], Platform.IOS: [ 'tremor' ] } use_system_libs = True files_plugins_core_devel = [ @@ -51,7 +51,9 @@ class Recipe(custom.GStreamerStatic): platform_files_plugins_codecs_devel = { Platform.ANDROID: [ 'libgstivorbisdec', - ] + ], + Platform.IOS: [ + 'libgstivorbisdec', } platform_files_plugins_sys_devel = { diff --git a/recipes/gst-plugins-base.recipe b/recipes/gst-plugins-base.recipe index d7c5e9c1..6f2385aa 100644 --- a/recipes/gst-plugins-base.recipe +++ b/recipes/gst-plugins-base.recipe @@ -10,7 +10,7 @@ class Recipe(recipe.Recipe): remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-base'} deps = ['glib', 'gstreamer', 'libogg', 'pango', 'libtheora', 'libvisual', 'libvorbis', 'zlib', 'orc'] - platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ] } + platform_deps = { Platform.LINUX: [ 'cdparanoia' ], Platform.ANDROID: [ 'tremor' ], Platform.IOS: [ 'tremor' ] } use_system_libs = True files_bins = ['gst-discoverer-0.10'] @@ -95,6 +95,9 @@ class Recipe(recipe.Recipe): platform_files_plugins_codecs = { Platform.ANDROID: [ 'lib/gstreamer-0.10/libgstivorbisdec%(mext)s', + ], + Platform.IOS: [ + 'lib/gstreamer-0.10/libgstivorbisdec%(mext)s', ] } |