3308852af0
Former-commit-id: eb02b520ce64f8414ed36812659a32ec82002572
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
class CairoPackage (CairoGraphicsXzPackage):
|
|
|
|
def __init__(self):
|
|
CairoGraphicsXzPackage.__init__(self, 'cairo', '1.12.14')
|
|
self.sources.extend([
|
|
'patches/cairo-quartz-crash.patch',
|
|
'patches/cairo-fix-color-bitmap-fonts.patch',
|
|
'patches/cairo-fix-CGFontGetGlyphPath-deprecation.patch',
|
|
'patches/cairo-bigsur.patch',
|
|
# 'patches/cairo-cglayer.patch',
|
|
])
|
|
|
|
def prep(self):
|
|
Package.prep(self)
|
|
|
|
if Package.profile.name == 'darwin':
|
|
for p in range(1, len(self.local_sources)):
|
|
self.sh('patch -p1 < "%{local_sources[' + str(p) + ']}"')
|
|
|
|
def build(self):
|
|
self.configure_flags = [
|
|
'--enable-pdf',
|
|
]
|
|
|
|
if Package.profile.name == 'darwin':
|
|
self.configure_flags.extend([
|
|
'--enable-quartz',
|
|
'--enable-quartz-font',
|
|
'--enable-quartz-image',
|
|
'--disable-xlib',
|
|
'--without-x'
|
|
])
|
|
elif Package.profile.name == 'linux':
|
|
self.configure_flags.extend([
|
|
'--disable-quartz',
|
|
'--with-x'
|
|
])
|
|
|
|
Package.build(self)
|
|
|
|
CairoPackage()
|