slpkg/conf/slpkg.conf

130 lines
4.6 KiB
Text
Raw Normal View History

2014-11-14 13:20:07 +01:00
# Configuration file for slpkg
#
2014-11-13 12:32:40 +01:00
# slpkg.conf file is part of slpkg.
#
# Copyright 2014-2022 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
2014-11-11 06:53:04 +01:00
# All rights reserved.
#
2014-12-19 05:57:56 +01:00
# Slpkg is a user-friendly package manager for Slackware installations.
#
# https://gitlab.com/dslackw/slpkg
#
2014-11-11 06:53:04 +01:00
# 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/>.
#
# END OF LEGAL NOTICE
#
2015-08-31 20:18:26 +02:00
# ----------------------------------------------------------------------------
# Set Slackware release "stable" or "current". Default is "stable".
2015-02-21 16:01:48 +01:00
RELEASE=stable
2014-12-02 00:27:17 +01:00
# Set Slackware version if it's necessary. Default is "off".
SLACKWARE_VERSION=off
# Set computer architecture if it's necessary. Default is "off".
COMP_ARCH=off
2015-06-12 05:55:54 +02:00
# Build directory for repository "sbo" slackbuilds.org. In this
# directory downloaded sources and scripts for building.
# Default is "/tmp/slpkg/build/".
2015-01-27 20:22:59 +01:00
BUILD_PATH=/tmp/slpkg/build/
# Alternative source downloads for the "sbo" repository. Default is "off".
SBOSRCARCH=off
SBOSRCARCH_LINK=http://slackware.uk/sbosrcarch/by-name/
2014-11-14 13:20:07 +01:00
# Download directory for others repositories that use binaries files
# for installation. Default is "/tmp/slpkg/packages/"
2014-11-13 12:32:40 +01:00
PACKAGES=/tmp/slpkg/packages/
# Download directory for Slackware patches file.
PATCHES=/tmp/slpkg/patches/
2014-11-11 06:53:04 +01:00
2015-06-12 05:55:54 +02:00
# If CHECKMD5 is "on" the system will check all downloaded
# sources and Slackware packages. Default is "on".
2015-06-03 07:45:44 +02:00
CHECKMD5=on
2015-06-12 05:55:54 +02:00
# Delete all downloaded files if DEL_ALL is "on". Default is "on".
2014-11-14 13:20:07 +01:00
DEL_ALL=on
2015-06-12 05:55:54 +02:00
# Delete build directory after each process if DEL_BUILD is "on".
# Settings for the repository "sbo" slackbuilds.org. Default is "off".
2014-11-14 13:20:07 +01:00
DEL_BUILD=off
2015-06-12 05:55:54 +02:00
# Keep build log file if SBO_BUILD_LOG is "on". Default is "on".
2014-11-14 13:20:07 +01:00
SBO_BUILD_LOG=on
2014-11-21 11:51:02 +01:00
# Speed up SlackBuild scripts. If "on" slpkg auto detect the numbers of
# processor and apply into MAKEFLAGS variable. Some SlackBuilds fail if
# MAKEFLAGS is declared or the number of processors (-j <n>) is greater
# than one. Default if "off".
MAKEFLAGS=off
2014-11-21 11:51:02 +01:00
# Define default answer to slpkg questions.
2015-06-12 05:55:54 +02:00
# Choose "y" if you do not want to questions. Default is "n".
2014-11-21 11:51:02 +01:00
DEFAULT_ANSWER=n
# Define default answer for the removal of dependencies.
2015-06-12 05:55:54 +02:00
# Choose "y" if you do not want to question. Default is "n".
2014-11-21 11:51:02 +01:00
REMOVE_DEPS_ANSWER=n
2014-11-25 10:38:40 +01:00
2015-06-12 05:55:54 +02:00
# If you want build UNSUPPORTED or UNTESTED packages choose "y".
# Settings for the repository "sbo" slackbuilds.org. Default is "n".
2014-12-02 00:27:17 +01:00
SKIP_UNST=n
2015-06-12 05:55:54 +02:00
# If you want to disable automatic resovle dependencies choose "off".
# Default is "on".
RSL_DEPS=on
2014-11-25 10:38:40 +01:00
# Delete package dependencies if DEL_DEPS is on.
2014-12-27 00:26:13 +01:00
# You must be careful if you enable this option because it can remove
2015-06-12 05:55:54 +02:00
# packages related to distribution. Default is "off".
2015-06-20 04:19:31 +02:00
DEL_DEPS=off
2014-11-25 10:38:40 +01:00
2015-06-12 05:55:54 +02:00
# Use colors for highlighting. Choose "on" or "off". Default is "on".
2014-11-25 10:38:40 +01:00
USE_COLORS=on
2015-01-07 08:25:48 +01:00
2015-08-18 05:10:31 +02:00
# Downloader utility. Four options are supported "wget", "aria2c",
# "curl" and "http" (HTTPie). Default is "wget".
2015-06-20 01:15:26 +02:00
DOWNDER=wget
2015-06-20 06:16:50 +02:00
# Downloader [OPTION]. Pass downloader options, for curl use "-L -o" as
# using to download in specific directory and support any redirects
# such as from sourceforge repository. aria2c recommended "--allow-overwrite"
# options by default. Http recommended "-d -c -o" options by default.
2015-08-18 05:10:31 +02:00
# Default for wget is "-c -N".
2015-06-20 01:15:26 +02:00
DOWNDER_OPTIONS=-c -N
2015-05-14 04:56:06 +02:00
2015-06-12 05:55:54 +02:00
# Update slackpkg ChangeLog.txt file if SLACKPKG_LOG is "on".
# Automatically synchronizes the command "slackpkg update" with
# "slpkg -c slack --upgrade". Default is "on".
2015-05-14 04:56:06 +02:00
SLACKPKG_LOG=on
2015-06-03 16:56:44 +02:00
# This option applies only to the distribution upgrade and repository
2015-06-04 03:19:29 +02:00
# slack (Slackware). If you want to update only packages that are installed
2015-06-12 05:55:54 +02:00
# choose "on". Default is "off".
# NOTE: This option is not recommended at "on" because it can leave out
2015-06-05 16:40:55 +02:00
# packages required for distribution.
2015-06-03 16:56:44 +02:00
ONLY_INSTALLED=off
2015-07-18 02:34:55 +02:00
# Register a text editor that uses the slpkg in a few options.
2015-09-10 05:57:12 +02:00
# Default is "nano".
EDITOR=nano
# If you don't want slpkg downgrade packages, setting this variable to "on".
# Warning: Possible failure building packages or running applications after
# install. Default is "off".
NOT_DOWNGRADE=off
# If you are working under a proxy server you need to set
# your proxy server here. Default is null.
HTTP_PROXY=