[release] 2.30.2
[jhbuild.git] / sample.jhbuildrc
blobd20aa5ff8ff2b9b6f61d8cc359b9e0c89ea05c5c
1 # -*- mode: python -*-
3 # edit this file to match your settings and copy it to ~/.jhbuildrc
5 # if you have a GNOME git account, uncomment this line
6 # repos['git.gnome.org'] = 'ssh://user@git.gnome.org/git/'
8 # what module set should be used.  The default at the moment is 'gnome-3.0',
9 # but it can be any of the files in the modulesets directory, or even
10 # the URL of a module set file on a web server.
11 # moduleset = 'gnome-3.0'
13 # A list of the modules to build.  Defaults to the Gnome Desktop and
14 # developer platform.
15 # modules = [ 'meta-gnome-desktop' ]
17 # what directory should the source be checked out to?
18 checkoutroot = os.path.expanduser('~/checkout/gnome')
20 # the prefix to configure/install modules to (must have write access)
21 prefix = '/opt/gnome'
23 # extra arguments to pass to all autogen.sh scripts
24 # to speed up builds of GNOME, try '--disable-static --disable-gtk-doc'
25 # it is also possible to set CFLAGS this way, 'CFLAGS="-g -O2"' for example
26 #autogenargs=''
28 # On SMP systems you may use something like this to improve compilation time:
29 # be aware that not all modules compile correctly with make -j2
30 # You can also use 'make V=0' if you want less output while compiling.
31 #makeargs = '-j2'