e3dc3e3066
Three new helpers will now be installed into ${libexecdir}: - xbps-src-capchroot needs to have set CAP_SYS_CHROOT ep. - xbps-src-chroot-cap{,u}mount: needs to have set CAP_SYS_ADMIN ep. That means that libcap and setcap(8) are now required to install xbps-src and use it as normal user. --HG-- extra : convert_revision : 586d6526079e085f86bf3e393459d429f6f0ef99
53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
#
|
|
# Configuration file for xbps-src.
|
|
#
|
|
|
|
#
|
|
# Directory where the xbps-src GIT repository is stored. This is
|
|
# required to be mounted in the chroot.
|
|
#
|
|
XBPS_DISTRIBUTIONDIR=$HOME/xbps-templates
|
|
|
|
#
|
|
# Chroot master directory.
|
|
#
|
|
XBPS_MASTERDIR=$XBPS_DISTRIBUTIONDIR/masterdir
|
|
|
|
#
|
|
# Compilation flags for cc and c++.
|
|
#
|
|
XBPS_CFLAGS="-O2 -pipe"
|
|
XBPS_CXXFLAGS="$XBPS_CFLAGS"
|
|
|
|
#
|
|
# Number of jobs when running make(1)-alike commands.
|
|
#
|
|
#XBPS_MAKEJOBS=4
|
|
|
|
#
|
|
# Compression program used to build the binary packages.
|
|
# Possible value: gzip, bzip2 or xz. Default xz.
|
|
#
|
|
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.
|
|
#
|
|
#XBPS_COMPRESS_LEVEL=9
|
|
|
|
#
|
|
# Install required build time dependencies from binary packages,
|
|
# XBPS_PACKAGESDIR will be used in the chroot to resolve builddeps.
|
|
#
|
|
#XBPS_PREFER_BINPKG_DEPS=yes
|
|
|
|
#
|
|
# Build packages with your unprivileged user in the chroot thanks
|
|
# to POSIX.1e Capabilities as explained in capabilities(7) on GNU/Linux.
|
|
#
|
|
# fakeroot is only used for the installation stage via the helper
|
|
# script xbps-src-doinst-helper.
|
|
#
|
|
#XBPS_USE_CAPCHROOT=yes
|