Fix Spanish translation header
[anjuta.git] / anjuta.jhbuildrc
blob7dc7cb59993fae062811e46fe6d21242e20f4803
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 moduleset = 'gnome-apps-3.0'
10 # A list of the modules to build.  Defaults to the Gnome Desktop and
11 # developer platform.
12 # modules = [ 'anjuta' ]
14 # what directory should the source be checked out to?
15 checkoutroot = os.path.expanduser('~/gnome-git')
17 # the prefix to configure/install modules to (must have write access)
18 prefix = '/home/user/gnome-unstable'
20 # extra arguments to pass to all autogen.sh scripts
21 # to speed up builds of gnome2, try '--disable-static --disable-gtk-doc'
22 # it is also possible to set CFLAGS this way, 'CFLAGS="-g -O2"' for example
23 autogenargs='--disable-gtk-doc'
24 alwaysautogen=True
26 module_autogenargs['fontconfig'] = autogenargs + ' --disable-docs'
27 module_autogenargs['libgda'] = autogenargs + ' --enable-introspection=no'
29 # Use toplevel-embedding branch of gtk+-3
30 branches['gtk+-3'] = (None, 'toplevel-embedding')
32 # On SMP systems you may use something like this to improve compilation time:
33 # be aware that not all modules compile correctly with make -j2
34 makeargs = '-j2'