# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python class Recipe(recipe.Recipe): name = 'libpng' version = '1.6.37' stype = SourceType.TARBALL url = 'sf://' tarball_checksum = '505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca' licenses = [{License.LibPNG: ['LICENSE']}] deps = ['zlib'] patches = [name + '/0001-neon-fix-function-export-names-for-iOS-armv7.patch'] files_libs = ['libpng16'] files_devel = ['include/libpng16', 'bin/libpng16-config', 'lib/pkgconfig/libpng16.pc', 'lib/pkgconfig/libpng.pc'] def prepare(self): if self.config.target_platform == Platform.IOS: gas = self.get_env('GAS') if gas: self.set_env('CCAS', gas, '-no-integrated-as') if self.config.target_arch == Architecture.ARM64: self.configure_options += ' --disable-arm-neon '