Some changes include: - Xstow is not used anymore, files are copied into masterdir. - a new target install-chroot has been created. - a new meta-template xbps-base-chroot has been created required for the install-chroot target. - Removed XBPS_SYSCONFDIR, /etc is used by default. Other changes that I cannot remember right now... --HG-- extra : convert_revision : fb57d9dafb56aeb03cc935580172e075ce584fd5
41 lines
928 B
Text
41 lines
928 B
Text
#
|
|
# Configuration file for xbps (xtraeme's build package system).
|
|
#
|
|
|
|
# Global directory where the xbps distribution files are stored.
|
|
# Templates, patches, helpers and dependency files should all be
|
|
# in that directory.
|
|
#
|
|
XBPS_DISTRIBUTIONDIR=$HOME/xbps
|
|
|
|
#
|
|
# Master directory: this is where all symlinks will be
|
|
# created pointing at packages installed in XBPS_DESTDIR.
|
|
#
|
|
XBPS_MASTERDIR=$XBPS_DISTRIBUTIONDIR/depot
|
|
|
|
#
|
|
# Destination directory: this is where all packages will be installed.
|
|
#
|
|
XBPS_DESTDIR=$XBPS_DISTRIBUTIONDIR/packages
|
|
|
|
#
|
|
# Directory where source files will be extracted to.
|
|
#
|
|
XBPS_BUILDDIR=$XBPS_DISTRIBUTIONDIR/srcdistdir
|
|
|
|
#
|
|
# Directory where source distribution files are stored.
|
|
#
|
|
XBPS_SRCDISTDIR=$XBPS_DISTRIBUTIONDIR/srcdistdir
|
|
|
|
#
|
|
# Compilation flags for cc and c++.
|
|
#
|
|
XBPS_CFLAGS="-O2 -pipe"
|
|
XBPS_CXXFLAGS="$XBPS_CFLAGS"
|
|
|
|
#
|
|
# Number of jobs when running GNU or BSD make style packages.
|
|
#
|
|
#XBPS_MAKEJOBS=4
|