slpkg/conf/slpkg.conf

108 lines
3.8 KiB
Text
Raw Normal View History

2014-11-14 13:20:07 +01:00
# Configuration file for slpkg
2014-11-11 06:53:04 +01:00
2014-11-13 12:32:40 +01:00
# slpkg.conf file is part of slpkg.
2014-11-11 06:53:04 +01:00
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
# 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/>.
2015-06-12 05:55:54 +02:00
# Slackware release "stable" or "current".
2015-02-21 16:01:48 +01:00
RELEASE=stable
2014-11-11 06:53:04 +01:00
2014-12-27 11:26:59 +01:00
# Choose repositories want to work. Read first REPOSITORIES file.
2014-12-24 06:42:06 +01:00
# Available repositories : slack,sbo,alien,rlw,slacky,studio,slackr,slonly,
2015-01-07 07:23:30 +01:00
# ktown{latest},multi,slacke{18},salix,slackl,rested
2015-06-12 22:41:09 +02:00
# msb{1.10}
2015-06-04 03:19:29 +02:00
#
2014-12-27 02:31:32 +01:00
# slackr (slackers.it) repository must used from Slackware64 current.
2015-06-12 05:55:54 +02:00
# Ktown (Alien"s ktown) repository. Default ktown{latest}.
2014-12-25 09:47:18 +01:00
# Slacke (Enlightenment E17 and E18) repository. Default slacke{18}.
2015-06-12 22:41:09 +02:00
# MSB (mate) repository. Default msb{1.10}
2014-12-18 16:10:02 +01:00
REPOSITORIES=slack,sbo
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-11 06:53:04 +01:00
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
# 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-06-20 01:15:26 +02:00
# Downloader utility. Three options are supported "wget", "aria2c" and
# "curl". Default is wget.
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. 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