Imported Upstream version 6.4.0.186

Former-commit-id: 710edcfe8c8328382163d2ff94143b3f789a6309
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-08-30 08:39:49 +00:00
parent d213358eb3
commit 4730215017
59 changed files with 176 additions and 175 deletions

View File

@@ -7,7 +7,18 @@ class LibTiffPackage (Package):
sources=[
'http://download.osgeo.org/libtiff/tiff-%{version}.tar.gz',
])
self.sources.extend([
'patches/tiff/patch-tiffconf.diff',
'patches/tiff/patch-tif_config.diff'
])
self.needs_lipo = True
def build(self):
if Package.profile.name == 'darwin':
Package.configure(self)
for p in range(1, len(self.local_sources)):
self.sh('patch -p0 < "%{local_sources[' + str(p) + ']}"')
Package.make(self)
else:
Package.build(self)
LibTiffPackage()