1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #
- # qirc: Runtime configuration file for Qi.
- #
- # Qi looks for this file in:
- # 1 - $HOME/.qirc
- # 2 - ${sysconfdir}/qirc
- #
- # File syntax considerations:
- #
- # * Variables are declared as 'name=value'.
- # * Declaration of values should only take one line, no line break.
- # * Assignments like 'name=$var' are only interpreted as literal.
- #
- # Uncomment a variable to set a new value other than default.
- # For more information, type: info qi 'the qirc file'
- #### FIRST SECTION: package settings
- # Package installation directory
- #packagedir=@PACKAGEDIR@
- # Target directory where the links will be made
- #targetdir=@TARGETDIR@
- #### SECOND SECTION: build settings
- # C compiler flags
- #QICFLAGS=-g0 -Os
- # C++ compiler flags
- #QICXXFLAGS=-g0 -Os
- # Linker flags
- #QILDFLAGS=-s
- # Temporary directory for sources during compilation
- #TMPDIR=/usr/src/qi/build
- # Architecture name to use by default (autodetected)
- #arch=
- # Parallel jobs for the compiler
- #jobs=1
- # Output directory where the packages are written
- #outdir=/var/cache/qi/packages
- # Working tree where archives, patches, and recipes are expected
- #worktree=/usr/src/qi
- # Where to find the sources (tarballs)
- #tardir=/usr/src/qi/sources
- # General network downloader
- #netget=wget -c -w1 -t3 --no-check-certificate
- # Network tool for the RSYNC protocol
- #rsync=rsync -v -a -L -z -i --progress
- # Arguments for 'configure'
- configure_args=--prefix=@PREFIX@ --libexecdir=@LIBEXECDIR@ --bindir=@BINDIR@ --sbindir=@SBINDIR@ --sysconfdir=@SYSCONFDIR@ --localstatedir=@LOCALSTATEDIR@
- # Prefixes for documentation
- infodir=@INFODIR@
- mandir=@MANDIR@
- docdir=@DOCDIR@
|