ce2680b740
This is the directory where the configuration files in a package will be installed. pkgfs won't have control over it, so if a package overwrites them, be sure to make a backup! --HG-- extra : convert_revision : a96e3871f7683f96b8711aa060dddadcb4970cb2
50 lines
1.2 KiB
Text
50 lines
1.2 KiB
Text
#
|
|
# Configuration file for pkgfs.
|
|
#
|
|
|
|
# Global directory where the pkgfs distribution files are stored.
|
|
# Templates, patches, helpers and dependency files should all be
|
|
# in that directory.
|
|
#
|
|
PKGFS_DISTRIBUTIONDIR=$HOME/pkgfs
|
|
|
|
#
|
|
# Master directory: this is where all symlinks will be
|
|
# created pointing at packages installed in PKGFS_DESTDIR.
|
|
#
|
|
PKGFS_MASTERDIR=$PKGFS_DISTRIBUTIONDIR/depot
|
|
|
|
#
|
|
# Destination directory: this is where all packages will be installed.
|
|
#
|
|
PKGFS_DESTDIR=$PKGFS_DISTRIBUTIONDIR/packages
|
|
|
|
#
|
|
# Directory where source files will be extracted to.
|
|
#
|
|
PKGFS_BUILDDIR=$PKGFS_DISTRIBUTIONDIR/builddir
|
|
|
|
#
|
|
# Directory where source distribution files are stored.
|
|
#
|
|
PKGFS_SRCDISTDIR=$PKGFS_DISTRIBUTIONDIR/srcdistdir
|
|
|
|
#
|
|
# Directory where configuration files installed by packages will
|
|
# be installed. Please note that files on this directory won't be
|
|
# removed if a package is unstowned.
|
|
#
|
|
# BEWARE: the package itself may overwrite them in some cases!
|
|
#
|
|
PKGFS_SYSCONFDIR=$PKGFS_MASTERDIR/etc
|
|
|
|
#
|
|
# Path to the xstow program.
|
|
#
|
|
PKGFS_XSTOW_CMD=$PKGFS_MASTERDIR/bin/xstow
|
|
|
|
#
|
|
# Compilation flags for cc and c++.
|
|
#
|
|
PKGFS_CFLAGS="-O2 -pipe"
|
|
PKGFS_CXXFLAGS="$PKGFS_CFLAGS"
|