summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Kim <justin.kim@collabora.com>2015-10-16 06:21:52 +0900
committerMatthew Waters <matthew@centricular.com>2015-10-21 04:57:32 +1100
commitcedbf84355a9122612018b8c0560608d5f855676 (patch)
treeae6128887f8ad47fc8cf435e45799be626236c89
parent02245a8de6fc828652fc1a7206708d78b30fd9e8 (diff)
gst-plugins-bad-1.0: copy java class into package
https://bugzilla.gnome.org/show_bug.cgi?id=755173
-rw-r--r--recipes/gst-plugins-bad-1.0-static.recipe5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/gst-plugins-bad-1.0-static.recipe b/recipes/gst-plugins-bad-1.0-static.recipe
index 3733b2d8..41f0632e 100644
--- a/recipes/gst-plugins-bad-1.0-static.recipe
+++ b/recipes/gst-plugins-bad-1.0-static.recipe
@@ -168,6 +168,8 @@ class Recipe(custom.GStreamerStatic):
files_plugins_sys = []
+ files_devel = []
+
def prepare(self):
self.append_env['CFLAGS'] = " -Wno-error -DGSTREAMER_GLIB_COCOA_NSAPPLICATION=1 "
self.append_env['OBJCFLAGS'] = " -Wno-error -DGSTREAMER_GLIB_COCOA_NSAPPLICATION=1 "
@@ -179,6 +181,9 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += \
' --disable-cog --disable-sdl '\
'--disable-cdaudio'
+ if self.config.target_platform == Platform.ANDROID:
+ self.files_devel += \
+ ['share/gst-android/ndk-build']
if self.config.variants.gtk3:
self.deps.append("gtk+3")
self.files_plugins_sys = ["libgstgtksink"]