2009-10-18 11:17:26 +02:00
|
|
|
#
|
|
|
|
# Configuration file for xbps-src.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2010-01-16 02:11:44 +01:00
|
|
|
# Directory where the xbps-src GIT repository is stored. This is
|
2011-06-26 01:45:12 +02:00
|
|
|
# required to be mounted in the chroot. You shouldn't need to modify this
|
|
|
|
# one unless your vanilla/xbps-templates repo has been moved to another path.
|
2009-10-18 11:17:26 +02:00
|
|
|
#
|
2010-12-21 12:33:46 +01:00
|
|
|
XBPS_DISTRIBUTIONDIR=@@XBPS_DISTRIBDIR@@
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
#
|
2010-01-09 23:35:11 +01:00
|
|
|
# Chroot master directory.
|
2009-10-18 11:17:26 +02:00
|
|
|
#
|
|
|
|
XBPS_MASTERDIR=$XBPS_DISTRIBUTIONDIR/masterdir
|
|
|
|
|
2011-06-26 01:45:12 +02:00
|
|
|
#
|
|
|
|
# Cache directory for downloaded binary packages; it's bind mounted
|
|
|
|
# to $XBPS_MASTERDIR/cachedir for chroot operations.
|
|
|
|
#
|
|
|
|
#XBPS_CACHEDIR=/path/to/cachedir/with/user/permissions/to/write
|
|
|
|
|
2009-10-18 11:17:26 +02:00
|
|
|
#
|
|
|
|
# Compilation flags for cc and c++.
|
|
|
|
#
|
|
|
|
XBPS_CFLAGS="-O2 -pipe"
|
|
|
|
XBPS_CXXFLAGS="$XBPS_CFLAGS"
|
|
|
|
|
2010-10-29 10:23:25 +02:00
|
|
|
#
|
|
|
|
# Linker flags passed to the compiler. By default we use --as-needed to
|
|
|
|
# avoid linking extra libraries into binaries. See the following link
|
|
|
|
# for info:
|
|
|
|
#
|
|
|
|
# http://www.gentoo.org/proj/en/qa/asneeded.xml
|
|
|
|
#
|
|
|
|
XBPS_LDFLAGS="-Wl,--as-needed"
|
|
|
|
|
2009-10-18 11:17:26 +02:00
|
|
|
#
|
2010-01-16 02:11:44 +01:00
|
|
|
# Number of jobs when running make(1)-alike commands.
|
2009-10-18 11:17:26 +02:00
|
|
|
#
|
|
|
|
#XBPS_MAKEJOBS=4
|
|
|
|
|
2009-10-20 15:19:09 +02:00
|
|
|
#
|
|
|
|
# Compression program used to build the binary packages.
|
2010-01-16 02:11:44 +01:00
|
|
|
# Possible value: gzip, bzip2 or xz. Default xz.
|
2009-10-20 15:19:09 +02:00
|
|
|
#
|
|
|
|
XBPS_COMPRESS_CMD=xz
|
|
|
|
|
|
|
|
#
|
|
|
|
# Compression level used in XBPS_COMPRESS_CMD to build the
|
|
|
|
# binary packages. Possible values: 1-9. If unset, default value
|
|
|
|
# by the command will be used.
|
|
|
|
#
|
2010-12-21 12:38:57 +01:00
|
|
|
XBPS_COMPRESS_LEVEL=9
|
2010-01-14 17:45:41 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Install required build time dependencies from binary packages,
|
2010-04-27 23:09:08 +02:00
|
|
|
# Local repository associated with the masterdir at <masterdir>/pkg-binpkgs,
|
|
|
|
# and remote repositories specified in XBPS_REPO_LIST will be used
|
|
|
|
# to resolve build dependencies.
|
2010-01-14 17:45:41 +01:00
|
|
|
#
|
|
|
|
#XBPS_PREFER_BINPKG_DEPS=yes
|
2010-04-27 23:09:08 +02:00
|
|
|
#XBPS_REPO_LIST="http://xbps.nopcode.org/repos/stable"
|
2010-01-16 02:11:44 +01:00
|
|
|
|
|
|
|
#
|
2010-04-26 14:15:49 +02:00
|
|
|
# Build packages with your unprivileged user in the chroot thanks
|
|
|
|
# to POSIX.1e Capabilities as explained in capabilities(7) on GNU/Linux.
|
2010-01-16 02:11:44 +01:00
|
|
|
#
|
|
|
|
# fakeroot is only used for the installation stage via the helper
|
|
|
|
# script xbps-src-doinst-helper.
|
|
|
|
#
|
2010-12-21 12:38:57 +01:00
|
|
|
XBPS_USE_CAPABILITIES=yes
|