diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-11-27 02:24:35 +0530 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-11-27 09:41:18 +0100 |
commit | 1bfe980b3523609c72694b39c37a8f692e36ecb6 (patch) | |
tree | e4c17211247f4c6a86b46cbbdef27b7ff178bb55 /recipes | |
parent | c43658f4208fb68d9be279a4da6928c6fa4f5b94 (diff) |
openh264.recipe: Add some comments for the next person to update the recipe
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/openh264.recipe | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/openh264.recipe b/recipes/openh264.recipe index b2211fd3..d9ba7d28 100644 --- a/recipes/openh264.recipe +++ b/recipes/openh264.recipe @@ -10,6 +10,10 @@ class Recipe(recipe.Recipe): stype = SourceType.TARBALL btype = BuildType.MAKEFILE licenses = [License.BSD] + # XXX: Part of this has been sent upstream: + # https://github.com/cisco/openh264/pull/1566 + # However, upstream didn't want the library to be versioned on Android, so + # we'll need to carry forward that bit for ourselves. patches = [name + '/versioned-shared-library.patch'] files_libs = ['libopenh264'] files_devel = ['include/wels'] @@ -68,6 +72,7 @@ class Recipe(recipe.Recipe): # No configure script def post_install(self): + # XXX: Don't forget to keep this in sync with the library version! libtool_la = LibtoolLibrary('openh264', 0, None, None, self.config.libdir, self.config.target_platform) libtool_la.save() |