blob: 5484eb6a4afcf02a372345955b1b17ae321e66d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libpng'
version = '1.6.34'
stype = SourceType.TARBALL
url = 'https://download.sourceforge.net/libpng/libpng-%(version)s.tar.xz'
licenses = [License.LibPNG]
deps = ['zlib']
patches = ['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:
if 'GAS' in os.environ:
self.set_env('CCAS', os.environ['GAS'], '-no-integrated-as')
if self.config.target_arch == Architecture.ARM64:
self.configure_options += ' --disable-arm-neon '
|