2009-10-04 22:43:30 -04:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-10-04 22:43:30 -04:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-10-04 22:43:30 -04:00
|
|
|
|
|
|
|
path_prefix = 'libs/clearlooks-newer'
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2009-10-04 22:43:30 -04:00
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
2011-09-29 15:58:05 -04:00
|
|
|
conf.load('compiler_c')
|
2009-10-04 22:43:30 -04:00
|
|
|
autowaf.configure(conf)
|
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'c cshlib')
|
2009-10-04 22:43:30 -04:00
|
|
|
obj.source = '''
|
|
|
|
animation.c
|
|
|
|
cairo-support.c
|
|
|
|
clearlooks_draw.c
|
|
|
|
clearlooks_draw_glossy.c
|
|
|
|
clearlooks_draw_gummy.c
|
|
|
|
clearlooks_draw_inverted.c
|
|
|
|
clearlooks_rc_style.c
|
|
|
|
clearlooks_style.c
|
|
|
|
clearlooks_theme_main.c
|
|
|
|
support.c
|
|
|
|
widget-information.c
|
|
|
|
'''
|
|
|
|
|
|
|
|
obj.name = 'clearlooks-newer'
|
|
|
|
obj.target = 'clearlooks'
|
|
|
|
obj.uselib = 'GTK'
|
|
|
|
obj.includes = '.'
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
|
|
|
# Bit of a hack: make a symlink to the .dylib that meets GTK's criteria for finding it (namely that the library must be a *.so
|
|
|
|
# and that it must reside in a directory called `engines')
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(target = 'engines', rule = 'mkdir -p ${TGT} && rm -f ${TGT}/libclearlooks.so && ln -s ../libclearlooks.dylib ${TGT}/libclearlooks.so')
|
2009-10-04 22:43:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
def shutdown():
|
|
|
|
autowaf.shutdown()
|