summaryrefslogtreecommitdiff
path: root/recipes/libpng
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-10-23 05:20:01 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-10-23 05:20:01 +0530
commit8a4557f3d22050bb596bc6e8c105b5c44af69023 (patch)
treed91445aea9411d5f58acee03dbfed184264f973f /recipes/libpng
parent05e41e5d0690826b330c245089c0fab3456c19e4 (diff)
libpng.recipe: Update to 1.6.35
Diffstat (limited to 'recipes/libpng')
-rw-r--r--recipes/libpng/libpng.recipe23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes/libpng/libpng.recipe b/recipes/libpng/libpng.recipe
deleted file mode 100644
index 78ce3cbb..00000000
--- a/recipes/libpng/libpng.recipe
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- 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'
- tarball_checksum = '2f1e960d92ce3b3abd03d06dfec9637dfbd22febf107a536b44f7a47c60659f6'
- 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 '