qirc.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #
  2. # qirc: Runtime configuration file for Qi.
  3. #
  4. # Qi looks for this file in:
  5. # 1 - $HOME/.qirc
  6. # 2 - ${sysconfdir}/qirc
  7. #
  8. # File syntax considerations:
  9. #
  10. # * Variables are declared as 'name=value'.
  11. # * Declaration of values should only take one line, no line break.
  12. # * Assignments like 'name=$var' are only interpreted as literal.
  13. #
  14. # Uncomment a variable to set a new value other than default.
  15. # For more information, type: info qi 'the qirc file'
  16. #### FIRST SECTION: package settings
  17. # Package installation directory
  18. #packagedir=@PACKAGEDIR@
  19. # Target directory where the links will be made
  20. #targetdir=@TARGETDIR@
  21. #### SECOND SECTION: build settings
  22. # C compiler flags
  23. #QICFLAGS=-g0 -Os
  24. # C++ compiler flags
  25. #QICXXFLAGS=-g0 -Os
  26. # Linker flags
  27. #QILDFLAGS=-s
  28. # Temporary directory for sources during compilation
  29. #TMPDIR=/usr/src/qi/build
  30. # Architecture name to use by default (autodetected)
  31. #arch=
  32. # Parallel jobs for the compiler
  33. #jobs=1
  34. # Output directory where the packages are written
  35. #outdir=/var/cache/qi/packages
  36. # Working tree where archives, patches, and recipes are expected
  37. #worktree=/usr/src/qi
  38. # Where to find the sources (tarballs)
  39. #tardir=/usr/src/qi/sources
  40. # General network downloader
  41. #netget=wget -c -w1 -t3 --no-check-certificate
  42. # Network tool for the RSYNC protocol
  43. #rsync=rsync -v -a -L -z -i --progress
  44. # Arguments for 'configure'
  45. configure_args=--prefix=@PREFIX@ --libexecdir=@LIBEXECDIR@ --bindir=@BINDIR@ --sbindir=@SBINDIR@ --sysconfdir=@SYSCONFDIR@ --localstatedir=@LOCALSTATEDIR@
  46. # Prefixes for documentation
  47. infodir=@INFODIR@
  48. mandir=@MANDIR@
  49. docdir=@DOCDIR@