sample.jhbuildrc-claws-mail 1.3 KB

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