# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'libogg' 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 configure(self): if self.config.target_platform == Platform.IOS: if Architecture.is_arm(self.config.target_arch): # These optimizations make the linker think the object file is not # for the arm architecture shell.replace (os.path.join(self.build_dir, 'configure.in'), {'-O4': '-O2'}) super(recipe.Recipe, self).configure()