Advertisement
Guest User

jhbuildrc

a guest
Oct 24th, 2010
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.32 KB | None | 0 0
  1. sec ~/testing/gnome2/automake-1.8.5$  cat ~/.jhbuildrc
  2. # -*- mode: python -*-
  3.  
  4. # edit this file to match your settings and copy it to ~/.jhbuildrc
  5.  
  6. # if you have a GNOME git account, uncomment this line
  7. # repos['git.gnome.org'] = 'ssh://user@git.gnome.org/git/'
  8.  
  9. # what module set should be used.  The default at the moment is 'gnome-3.0',
  10. # but it can be any of the files in the modulesets directory, or even
  11. # the URL of a module set file on a web server.
  12. moduleset = 'gnome-3.0'
  13.  
  14. # A list of the modules to build.  Defaults to the Gnome Desktop and
  15. # developer platform.
  16. # modules = [ 'meta-gnome-desktop' ]
  17.  
  18. # what directory should the source be checked out to?
  19. checkoutroot = os.path.expanduser('~/testing/gnome2/')
  20.  
  21. # the prefix to configure/install modules to (must have write access)
  22. prefix = '~/testing/opt/gnome2'
  23.  
  24. # custom CFLAGS / environment pieces for the build
  25. os.environ['CFLAGS'] = '-Wall -g -O2'
  26.  
  27. # extra arguments to pass to all autogen.sh scripts
  28. # to speed up builds of GNOME, try '--disable-static --disable-gtk-doc'
  29. autogenargs='--disable-static --disable-gtk-doc'
  30.  
  31. # On SMP systems you may use something like this to improve compilation time:
  32. # be aware that not all modules compile correctly with make -j2
  33. # You can also use 'make V=0' if you want less output while compiling.
  34. makeargs = '-j2'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement