You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.186
Former-commit-id: 710edcfe8c8328382163d2ff94143b3f789a6309
This commit is contained in:
parent
d213358eb3
commit
4730215017
13
external/bockbuild/packages/libtiff.py
vendored
13
external/bockbuild/packages/libtiff.py
vendored
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user