cf8ed535b6
The code looks at db(1) btree files stored in PKGFS_DEPSDIR to know what dependencies are required for X package, and walks the dependency chain every time that X package contains a deps .db file. Every time a package is stowned, the pkg is registered into PKGFS_DESTDIR/.pkgfs-registered-pkgs.db, and removed when it's unstowned. --HG-- extra : convert_revision : b5222a890dd41b96dc72ee3e90bb72a282fe0841
47 lines
902 B
Plaintext
47 lines
902 B
Plaintext
#
|
|
# Configuration file for pkgfs.
|
|
#
|
|
|
|
#
|
|
# Global master directory: this is where all symlinks will be
|
|
# created pointing at packages installed in PKGFS_DESTDIR.
|
|
#
|
|
PKGFS_MASTERDIR=$HOME/pkgfs
|
|
|
|
#
|
|
# Global destination directory: this is where all packages will be
|
|
# installed.
|
|
#
|
|
PKGFS_DESTDIR=$HOME/pkgfs/packages
|
|
|
|
#
|
|
# 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
|
|
|
|
#
|
|
# Global directory where templates and patches are stored.
|
|
#
|
|
PKGFS_TEMPLATESDIR=$HOME/pkgfs/templates
|
|
|
|
#
|
|
# Global directory where the dependency database files are stored.
|
|
#
|
|
PKGFS_DEPSDIR=$HOME/pkgfs/dependencies
|
|
|
|
#
|
|
# 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"
|