2014-11-18 14:28:09 +01:00
|
|
|
# Configuration file for slpkg
|
|
|
|
|
|
|
|
# slpkg.conf file is part of slpkg.
|
|
|
|
|
|
|
|
# Copyright 2014 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
|
|
# All rights reserved.
|
|
|
|
|
|
|
|
# Utility for easy management packages in Slackware
|
|
|
|
|
|
|
|
# https://github.com/dslackw/slpkg
|
|
|
|
|
|
|
|
# Slpkg is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Slackware version 'stable' or 'current'.
|
|
|
|
VERSION=stable
|
|
|
|
|
2014-12-02 00:31:10 +01:00
|
|
|
# Choose repositories want to work.
|
|
|
|
# Available repositories : slack, sbo, alien, rlw, slacky, studio
|
|
|
|
REPOSITORIES=slack,sbo,alien,rlw,slacky,studio
|
|
|
|
|
2014-11-18 14:28:09 +01:00
|
|
|
# Build directory for repository slackbuilds.org. In this directory
|
|
|
|
# downloaded sources and scripts for building.
|
|
|
|
BUILD=/tmp/slpkg/build/
|
|
|
|
|
|
|
|
# If SBO_CHECK_MD5 is 'on' the system will check all downloaded
|
|
|
|
# sources from SBo repository.
|
|
|
|
SBO_CHECK_MD5=on
|
|
|
|
|
|
|
|
# Download directory for others repositories that use binaries files
|
|
|
|
# for installation.
|
|
|
|
PACKAGES=/tmp/slpkg/packages/
|
|
|
|
|
|
|
|
# Download directory for Slackware patches file.
|
|
|
|
PATCHES=/tmp/slpkg/patches/
|
|
|
|
|
|
|
|
# Delete all downloaded files if DEL_ALL is 'on'.
|
|
|
|
DEL_ALL=on
|
|
|
|
|
|
|
|
# Delete build directory after each process if DEL_BUILD is 'on'.
|
|
|
|
DEL_BUILD=off
|
|
|
|
|
|
|
|
# Keep build log file if SBO_BUILD_LOG is 'on'.
|
|
|
|
SBO_BUILD_LOG=on
|
2014-11-22 11:04:11 +01:00
|
|
|
|
|
|
|
# Define default answer to slpkg questions.
|
|
|
|
# Choose 'y' if you do not want to questions.
|
|
|
|
DEFAULT_ANSWER=n
|
|
|
|
|
|
|
|
# Define default answer for the removal of dependencies.
|
|
|
|
# Choose 'y' if you do not want to question.
|
|
|
|
REMOVE_DEPS_ANSWER=n
|
2014-11-26 03:28:34 +01:00
|
|
|
|
2014-12-02 00:31:10 +01:00
|
|
|
# If you want build UNSUPPORTED or UNTESTED packages choose 'y'.
|
|
|
|
SKIP_UNST=n
|
|
|
|
|
2014-11-26 03:28:34 +01:00
|
|
|
# Delete package dependencies if DEL_DEPS is on.
|
|
|
|
DEL_DEPS=on
|
|
|
|
|
|
|
|
# Use colors for highlighting. Choose 'on' or 'off'.
|
|
|
|
USE_COLORS=on
|