diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2013-10-15 13:59:23 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2013-10-15 13:59:23 +0200 |
commit | ef0f1401b00b719369fa9db0592329cf6a4350a8 (patch) | |
tree | 9009f9ebb1726ce48fd61d3816d11b39c8f7bb63 /recipes/libvorbis.recipe | |
parent | 998765ccd4a204aa48132cad9cdee730ac4047cc (diff) |
libvorbis: Switch to tarballs and actually run autogen.sh to pick up configure changes
Diffstat (limited to 'recipes/libvorbis.recipe')
-rw-r--r-- | recipes/libvorbis.recipe | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes/libvorbis.recipe b/recipes/libvorbis.recipe index 67885ff6..8ee237ee 100644 --- a/recipes/libvorbis.recipe +++ b/recipes/libvorbis.recipe @@ -5,8 +5,14 @@ from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'libvorbis' version = '1.3.3' + stype = SourceType.TARBALL + url = 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.xz' licenses = [License.BSD_like] deps = ['libogg'] + config_sh = 'sh autogen.sh' + patches = ['libvorbis/0001-Fix-linking-on-Android.patch', + 'libvorbis/0003-Link-the-other-libs-with-lm-too.patch', + 'libvorbis/0004-configure-check-for-endianness.patch'] files_libs = ['libvorbis', 'libvorbisenc', 'libvorbisfile'] files_devel = [ |