diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2013-10-07 09:42:58 +0200 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2013-10-07 09:43:15 +0200 |
commit | 80b5604d1e09a7ae04f325a0d772f725fc01ffb4 (patch) | |
tree | 4a6dd719918296c9796117cc3ec5cbd2554afe4f /recipes/libogg.recipe | |
parent | 25470065ca1e9703a2739e91858ba72850654449 (diff) |
libogg: Update to 1.3.1 and switch to tarballs
Diffstat (limited to 'recipes/libogg.recipe')
-rw-r--r-- | recipes/libogg.recipe | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/libogg.recipe b/recipes/libogg.recipe index 10680f4a..704a09ee 100644 --- a/recipes/libogg.recipe +++ b/recipes/libogg.recipe @@ -4,16 +4,16 @@ from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'libogg' - version = '1.3.0' + version = '1.3.1' + stype = SourceType.TARBALL + url = 'http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz' licenses = [License.BSD_like] + autoreconf = True + patches = ['libogg/0001-Fix-iOS-build.patch'] files_libs = ['libogg'] files_devel = ['include/ogg', 'lib/pkgconfig/ogg.pc', 'share/aclocal/ogg.m4'] - def prepare(self): - if self.config.target_platform == Platform.IOS: - self.autoreconf = True - def configure(self): if self.config.target_platform == Platform.IOS: if self.config.target_arch in [Architecture.ARM, Architecture.ARMv7]: |