slpkg/conf/slpkg.conf

116 lines
4 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.
#
2015-05-21 01:00:07 +02:00
# Copyright 2014-2015 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.
#
2014-11-11 06:53:04 +01:00
# https://github.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
# ----------------------------------------------------------------------------
2015-06-12 05:55:54 +02:00
# Slackware release "stable" or "current".
2015-02-21 16:01:48 +01:00
RELEASE=stable
2014-12-02 00:27:17 +01:00
2015-06-12 05:55:54 +02:00
# Build directory for repository "sbo" slackbuilds.org. In this
# directory downloaded sources and scripts for building.
2015-01-27 20:22:59 +01:00
BUILD_PATH=/tmp/slpkg/build/
#
2014-11-14 13:20:07 +01:00
# Download directory for others repositories that use binaries files
# for installation.
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 in "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",
2015-08-18 06:05:54 +02:00
# "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
2015-06-24 00:00:21 +02:00
# such as from sourceforge repository. No extra option need for aria2c
2015-08-18 05:10:31 +02:00
# by default to work. Http recommended "-d -c -o" options by default.
# 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
# Enable or disable the progress bar. Status bar progress delays the search
# process in package lists. Choose "off" if you need speed. Deafult is "on".
PRG_BAR=on
2015-09-10 05:57:12 +02:00
# Register a text editor that uses the slpkg in a few options.
# Default is "nano".
EDITOR=nano