void-packages/pkgfs.conf
Juan RP 535b7b6a31 Initial import of pkgfs, aka package from sources.
It's a simple wrapper to shell scripts to allow building source
distribution files through an easy cli. For now it's only able
to fetch/build/install a package into a destination directory.

Goal is to be able to have same functionality like GNU's stow.

I added three template files to allow building: glib2, gmake
and libtool.

--HG--
extra : convert_revision : 5e52738f97edc0ff4a9e5de48a75834bf0916651
2008-09-26 21:59:07 +02:00

29 lines
453 B
Text

#
# Configuration file for pkgfs.
#
#
# Global destination dir: this is where all
# packages will be installed.
#
PKGFS_DESTDIR=$HOME/pkgfs/depot
#
# 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
#
# Compilation flags for cc and c++.
#
PKGFS_CFLAGS="-O2 -pipe"
PKGFS_CXXFLAGS="$G_CFLAGS"
#
# END
#