3 # A list of the modules to build. Defaults to the Gnome Desktop and
5 #moduleset = '/gnome/src/gnumeric/tools/moduleset'
6 moduleset = 'http://svn.gnome.org/svn/gnumeric/trunk/tools/moduleset'
7 modules = [ 'gnumeric' ]
9 # the prefix to configure/install modules to (must have write access)
10 prefix = os.path.expanduser('~/gnome/build')
11 checkoutroot = os.path.expanduser('~/gnome/src')
13 # if you do not want to use system-installed libraries for your builds, comment
15 addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'lib', 'pkgconfig'))
16 addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'share', 'pkgconfig'))
18 # On SMP systems you may use something like this to improve compilation time:
19 # be aware that not all modules compile correctly with make -j2
22 autogenargs += ' --prefix='+prefix
23 # disable gnome-vfs, it is not required for basic builds
24 module_autogenargs['libgsf'] = autogenargs + """ --without-gnome-vfs --without-bonobo"""
25 # We disabled gnome-vfs in gsf, disable gnome to match
26 module_autogenargs['gnumeric'] = autogenargs + """ --without-gnome"""