qirc.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. # List of package names to be installed rather than being updated.
  22. #
  23. # It is suggested that such packages are only those limited in name,
  24. # for e.g. incoming package names such as: "perl.tlz" instead of
  25. # "perl-<version>-<arch>+<release>.tlz". This to try to perform an
  26. # atomic update instead of pruning the links through graft(1).
  27. #
  28. #blacklist="perl5 graft tarlz plzip musl glibc"
  29. #### SECOND SECTION: build settings
  30. # C compiler flags
  31. #QICFLAGS=-g0 -Os
  32. # C++ compiler flags
  33. #QICXXFLAGS=-g0 -Os
  34. # Linker flags
  35. #QILDFLAGS=-s
  36. # Temporary directory for sources during compilation
  37. #TMPDIR=/usr/src/qi/build
  38. # Architecture name to use by default (autodetected)
  39. #arch=
  40. # Parallel jobs for the compiler
  41. #jobs=1
  42. # Output directory where the packages are written
  43. #outdir=/var/cache/qi/packages
  44. # Working tree where archives, patches, and recipes are expected
  45. #worktree=/usr/src/qi
  46. # Where to find the sources (tarballs)
  47. #tardir=/usr/src/qi/sources
  48. # General network downloader
  49. #netget=wget -c -w1 -t3 --no-check-certificate
  50. # Network tool for the RSYNC protocol
  51. #rsync=rsync -v -a -L -z -i --progress
  52. # Arguments for 'configure'
  53. configure_args=--prefix=@PREFIX@ --libexecdir=@LIBEXECDIR@ --bindir=@BINDIR@ --sbindir=@SBINDIR@ --sysconfdir=@SYSCONFDIR@ --localstatedir=@LOCALSTATEDIR@
  54. # Prefixes for documentation
  55. infodir=@INFODIR@
  56. mandir=@MANDIR@
  57. docdir=@DOCDIR@