qirc.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. # For more information, type: info qi 'the qirc file'
  9. #
  10. # Uncomment a variable to set a new value other than the default.
  11. ### FIRST SECTION: package settings
  12. # Package installation directory
  13. #packagedir=@PACKAGEDIR@
  14. # Target directory where the links will be made
  15. #targetdir=@TARGETDIR@
  16. # List of package names to be installed rather than being upgraded.
  17. #
  18. # This is to try to perform an atomic upgrade instead of pruning
  19. # symbolic links through graft(1), which can render your system unusable.
  20. #
  21. # For more details, type: info qi 'package blacklist'
  22. #
  23. #blacklist="perl5 graft tarlz plzip musl glibc coreutils bash mksh"
  24. # Verbosity level
  25. #verbose=0
  26. ### SECOND SECTION: build settings
  27. # Temporary directory for sources during compilation
  28. #TMPDIR=/usr/src/qi/build
  29. # C compiler flags (to be used on CFLAGS)
  30. #QICFLAGS="-O2"
  31. # C++ compiler flags (to be used on CXXFLAGS)
  32. #QICXXFLAGS="-O2"
  33. # Flags for the linker (to be used on LDFLAGS)
  34. #QILDFLAGS=""
  35. # C/C++ preprocessor flags (to be used on CPPFLAGS)
  36. #QICPPFLAGS=""
  37. # Time of the last modification to the source code
  38. #SOURCE_DATE_EPOCH=$(date +%s)
  39. # Parallel jobs for the compiler
  40. #jobs=1
  41. # Output directory where the packages are written
  42. #outdir=/var/cache/qi/packages
  43. # Working tree where archives, patches, and recipes are expected
  44. #worktree=/usr/src/qi
  45. # Where to find the sources (tarballs)
  46. #tardir=/usr/src/qi/sources
  47. # General network downloader
  48. #netget="wget -c -w1 -t3 --no-check-certificate"
  49. # Network tool for the RSYNC protocol
  50. #rsync="rsync -v -a -L -z -i --progress"
  51. # Arguments for 'configure'
  52. configure_args="--prefix=@PREFIX@ --libexecdir=@LIBEXECDIR@ --bindir=@BINDIR@ --sbindir=@SBINDIR@ --sysconfdir=@SYSCONFDIR@ --localstatedir=@LOCALSTATEDIR@"
  53. # Default package architecture
  54. arch=@ARCH@
  55. # Documentation prefixes
  56. infodir=@INFODIR@
  57. mandir=@MANDIR@
  58. docdir=@DOCDIR@