2008-09-26 19:59:07 +00:00
|
|
|
#
|
|
|
|
# Configuration file for pkgfs.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2008-09-27 01:47:22 +00:00
|
|
|
# Global master directory: this is where all symlinks will be
|
|
|
|
# created pointing at packages installed in PKGFS_DESTDIR.
|
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
PKGFS_MASTERDIR=$HOME/pkgfs
|
2008-09-27 01:47:22 +00:00
|
|
|
|
2008-09-29 15:01:12 +00:00
|
|
|
#
|
|
|
|
# Global destination directory: this is where all packages will be
|
|
|
|
# installed.
|
2008-09-26 19:59:07 +00:00
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
PKGFS_DESTDIR=$HOME/pkgfs/packages
|
2008-09-26 19:59:07 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Global directory where source files will be extracted to.
|
|
|
|
#
|
|
|
|
PKGFS_BUILDDIR=$HOME/pkgfs/builddir
|
|
|
|
|
|
|
|
#
|
|
|
|
# Global directory where the source distfiles are stored.
|
|
|
|
#
|
|
|
|
PKGFS_SRC_DISTDIR=$HOME/pkgfs/distdir
|
|
|
|
|
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
# Global directory where templates and patches are stored.
|
2008-09-26 19:59:07 +00:00
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
PKGFS_TEMPLATESDIR=$HOME/pkgfs/templates
|
2008-09-26 19:59:07 +00:00
|
|
|
|
2008-09-29 15:01:12 +00:00
|
|
|
#
|
|
|
|
# Global directory where the dependency database files are stored.
|
|
|
|
#
|
|
|
|
PKGFS_DEPSDIR=$HOME/pkgfs/dependencies
|
|
|
|
|
2008-09-26 19:59:07 +00:00
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
# Path to the xstow program.
|
|
|
|
#
|
|
|
|
PKGFS_XSTOW_CMD=$PKGFS_MASTERDIR/bin/xstow
|
|
|
|
|
2008-09-26 19:59:07 +00:00
|
|
|
#
|
2008-09-28 05:10:47 +00:00
|
|
|
# Compilation flags for cc and c++.
|
|
|
|
#
|
|
|
|
PKGFS_CFLAGS="-O2 -pipe"
|
|
|
|
PKGFS_CXXFLAGS="$PKGFS_CFLAGS"
|