mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-18 10:26:29 +01:00
Set for capital
This commit is contained in:
parent
35e8878f37
commit
546930bd7b
1 changed files with 27 additions and 21 deletions
|
@ -1,57 +1,63 @@
|
|||
[configs]
|
||||
# OS architecture by default.
|
||||
os_arch = "x86_64"
|
||||
OS_ARCH = "x86_64"
|
||||
|
||||
# Tmp path for slpkg.
|
||||
tmp_slpkg = "/tmp/slpkg"
|
||||
TMP_SLPKG = "/tmp/slpkg"
|
||||
|
||||
# Path for building source and the script.
|
||||
build_path = "/tmp/slpkg/build"
|
||||
BUILD_PATH = "/tmp/slpkg/build"
|
||||
|
||||
# This path working only with the command download.
|
||||
download_only = "/tmp/slpkg"
|
||||
DONWLOAD_ONLY = "/tmp/slpkg"
|
||||
|
||||
# The path that the SLACKBUILDS.TXT file downloaded.
|
||||
sbo_repo_path = "/var/lib/slpkg/repository"
|
||||
SBO_REPO_PATH = "/var/lib/slpkg/repository"
|
||||
|
||||
# The name of the database. Default name is 'database.slpkg'.
|
||||
database_name = "database.slpkg"
|
||||
DATABASE_NAME = "database.slpkg"
|
||||
|
||||
# Slackbuilds.org repository url.
|
||||
sbo_repo_url = "https://slackbuilds.org/slackbuilds/15.0"
|
||||
SBO_REPO_URL = "https://slackbuilds.org/slackbuilds/15.0"
|
||||
|
||||
# The SLACKBUILDS.TXT repository file.
|
||||
sbo_txt = "SLACKBUILDS.TXT"
|
||||
SBO_TXT = "SLACKBUILDS.TXT"
|
||||
|
||||
# The ChangeLog.txt file.
|
||||
sbo_chglog_txt = "ChangeLog.txt"
|
||||
SBO_CHGLOG_TXT = "ChangeLog.txt"
|
||||
|
||||
# The sbo tar suffix.
|
||||
sbo_tar_suffix = ".tar.gz"
|
||||
SBO_TAR_SUFFIX = ".tar.gz"
|
||||
|
||||
# The sbo repository tag.
|
||||
sbo_repo_tag = "_SBo"
|
||||
SBO_REPO_TAG = "_SBo"
|
||||
|
||||
# Ponce default url: https://cgit.ponce.cc/slackbuilds/plain
|
||||
# Set true and set the url here if you going to use ponce repository.
|
||||
# Do not unset
|
||||
PONCE_REPO = false
|
||||
PONCE_REPO_URL = ''
|
||||
|
||||
# Slackware command for install packages, instead, you can use 'installpkg'.
|
||||
installpkg = "upgradepkg --install-new"
|
||||
INSTALLPKG = "upgradepkg --install-new"
|
||||
|
||||
# Slackware command to reinstall packages.
|
||||
reinstall = "upgradepkg --reinstall"
|
||||
REINSTALL = "upgradepkg --reinstall"
|
||||
|
||||
# Slackware command to remove packages.
|
||||
removepkg = "removepkg"
|
||||
REMOVEPKG = "removepkg"
|
||||
|
||||
# Cli menu colors configs. Default is true. [true/false].
|
||||
colors = true
|
||||
COLORS = true
|
||||
|
||||
# Dialog is a program that will let you to presenta variety of questions
|
||||
# or display messages using dialog boxes from a shell script.
|
||||
# Default is true. [true/false].
|
||||
dialog = true
|
||||
DIALOG = true
|
||||
|
||||
# You can choose downloader between wget and curl.
|
||||
# Default is wget. [wget/curl].
|
||||
downloader = "wget"
|
||||
DOWNLOADER = "wget"
|
||||
|
||||
# Wget downloader options.
|
||||
# -c, --continue: resume getting a partially-downloaded file.
|
||||
|
@ -59,17 +65,17 @@
|
|||
# -q, Turn off Wget's output.
|
||||
# --show-progress, Force wget to display the progress bar in any verbosity.
|
||||
# than local.
|
||||
wget_options = "-c -N -q --show-progress"
|
||||
WGET_OPTIONS = "-c -N -q --show-progress"
|
||||
|
||||
# Curl downloader options.
|
||||
# Pass the options you want here.
|
||||
curl_options = ""
|
||||
CURL_OPTIONS = ""
|
||||
|
||||
# If silent mode is true, it does not print the commands as they are executed.
|
||||
# Default is true. [true/false].
|
||||
silent_mode = true
|
||||
SILENT_MODE = true
|
||||
|
||||
# Choose ascii printable characters.
|
||||
# If true, it uses the extended characters, otherwise the basic ones.
|
||||
# Default is true. [true/false].
|
||||
ascii_characters = true
|
||||
ASCII_CHARACTERS = true
|
Loading…
Reference in a new issue