# /etc/src2pkg/src2pkg.conf Version-1.0 # Only change stuff here that you want to *always* apply. # Most configuration options are set up with sane defaults # in the file /usr/libexec/src2pkg/DEFINES. The code gets # executed when the file is sourced, so it shouldn't go here in /etc. # # 'Package by' signature for automatically created slack-desc files # CREATOR="src2pkg" # Uncomment to turn off color prompting # COLOR_PROMPT="NO" # Uncomment to always see all ouput # QUIET="NO" # specify the program for downloading files -- wget, rsync, curl and lynx are supported # DOWNLOADER=wget ## Working Directories # The default settings for these are like for Slackware: # # The tarball, or link to it, is in the current directory # SOURCES_DIR="$CWD" # Sources are unpacked and built in /tmp # SRC_BUILDS_DIR="/tmp" # The package build tree is also in /tmp # PKG_BUILDS_DIR="/tmp" # Finished packages are left in /tmp # PKG_DEST_DIR="/tmp" # # Installwatch needs a directory to backup overwritten files: # BACKUP_DIR=/tmp # If you keep backup archives they will saved to this directory: # BACKUPS_SAVE_DIR=/tmp # You can create a separate directory for each package # and then do everything in the current directory: # # SOURCES_DIR="$CWD" # SRC_BUILDS_DIR="$CWD" # PKG_BUILDS_DIR="$CWD" # PKG_DEST_DIR="$CWD" # BACKUP_DIR="$CWD" # # You can also set it up like rpm does and create a build area, # for example, in /usr/src/src2pkg with subdirectories like: # SOURCES, BUILDS, PACKAGES. Then you can make a # RECIPES directory with subdirs for each src2pkg script # with it's patches or other resources