RSSyl: Allow giving custom CA cert file to libfeed
[claws.git] / tools / jhbuild / sample.jhbuildrc-claws-mail
1 # -*- mode: python -*-
2 #
3 # Sample jhbuildrc configuration file for building Claws Mail and
4 # some of its dependencies.
5
6 # Select module set to use
7 moduleset = os.path.expanduser('~/src/claws-mail/claws/tools/jhbuild/claws-mail.modules')
8
9 # repo login in case of write access
10 #repos["git.claws-mail.org"] = 'ssh://git.claws-mail.org/home/git/'
11
12 # default modules
13 modules = ['claws-mail']
14
15 # what directory should the source be checked out to?
16 checkoutroot = os.path.expanduser('~/src/claws-mail')
17
18 # the prefix to configure/install modules to (must have write access)
19 prefix = '/opt/claws-mail'
20
21 # make arguments (e.g. concurrent build)
22 #makeargs = '-j4'
23
24 # environment vars (e.g. CFLAGS)
25 #os.environ['CFLAGS'] = '-g -O0'
26
27 # module-specific autofoo args
28 #module_autogenargs['claws-mail'] = " ".join([autogenargs, "--disable-manual"])
29 #module_autogenargs['libgdata'] = " ".join([autogenargs, "--disable-tests"])
30
31 # path for building (if None, build in-tree)
32 #buildroot = None
33
34 # skip building of dependant modules (system-installed ones will be used)
35 skip = [
36     "glib"
37     , "gtk+"
38     , "libgdata"
39     , "libchamplain"
40     ]
41
42 # speficif branches/tags of modules that should be built
43 #branches['libgdata'] = (None, 'LIBGDATA_0_17_1')
44
45 # module specific extra environment variables
46 #module_extra_env = { "clutter-gtk" : {"LDFLAGS" : "-lm -lgthread-2.0"} }