slpkg/configs/slpkg.toml

80 lines
2.3 KiB
TOML
Raw Normal View History

2023-02-28 12:49:21 +01:00
[CONFIGS]
# OS architecture by default.
2023-02-28 12:44:53 +01:00
OS_ARCH = "x86_64"
# Tmp path for slpkg.
2023-02-28 12:44:53 +01:00
TMP_SLPKG = "/tmp/slpkg"
2023-02-27 10:06:44 +01:00
# Path for building source and the script.
2023-02-28 12:44:53 +01:00
BUILD_PATH = "/tmp/slpkg/build"
# This path working only with the command download.
2023-02-28 13:18:46 +01:00
DOWNLOAD_ONLY_PATH = "/tmp/slpkg"
# The path that the SLACKBUILDS.TXT file downloaded.
2023-02-28 12:44:53 +01:00
SBO_REPO_PATH = "/var/lib/slpkg/repository"
# The name of the database. Default name is 'database.slpkg'.
2023-02-28 12:44:53 +01:00
DATABASE_NAME = "database.slpkg"
# Slackbuilds.org repository url.
2023-02-28 12:44:53 +01:00
SBO_REPO_URL = "https://slackbuilds.org/slackbuilds/15.0"
# The SLACKBUILDS.TXT repository file.
2023-02-28 12:44:53 +01:00
SBO_TXT = "SLACKBUILDS.TXT"
# The ChangeLog.txt file.
2023-02-28 12:44:53 +01:00
SBO_CHGLOG_TXT = "ChangeLog.txt"
# The sbo tar suffix.
2023-02-28 12:44:53 +01:00
SBO_TAR_SUFFIX = ".tar.gz"
# The sbo repository tag.
2023-02-28 12:44:53 +01:00
SBO_REPO_TAG = "_SBo"
2023-02-28 16:33:02 +01:00
# Set the PONCE_REPO and PONCE_REPO_URL if you are going to use it.
# Do not unset SBO_REPO_URL and SBO_TXT.
# PONCE_REPO_URL = "https://cgit.ponce.cc/slackbuilds/plain"
PONCE_REPO_URL = ""
2023-02-27 10:32:52 +01:00
# Slackware command for install packages, instead, you can use 'installpkg'.
2023-02-28 12:44:53 +01:00
INSTALLPKG = "upgradepkg --install-new"
2023-02-27 10:06:44 +01:00
# Slackware command to reinstall packages.
2023-02-28 12:44:53 +01:00
REINSTALL = "upgradepkg --reinstall"
# Slackware command to remove packages.
2023-02-28 12:44:53 +01:00
REMOVEPKG = "removepkg"
2023-02-27 10:06:44 +01:00
# Cli menu colors configs. Default is true. [true/false].
2023-02-28 12:44:53 +01:00
COLORS = true
2023-02-27 10:06:44 +01:00
# 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].
2023-02-28 12:44:53 +01:00
DIALOG = true
2022-12-26 11:47:33 +01:00
2023-02-27 10:06:44 +01:00
# You can choose downloader between wget and curl.
# Default is wget. [wget/curl].
2023-02-28 12:44:53 +01:00
DOWNLOADER = "wget"
2023-01-25 21:23:31 +01:00
2022-12-26 11:47:33 +01:00
# Wget downloader options.
# -c, --continue: resume getting a partially-downloaded file.
2023-01-14 21:34:14 +01:00
# -N, --timestamping: don't re-retrieve files unless newer.
# -q, Turn off Wget's output.
# --show-progress, Force wget to display the progress bar in any verbosity.
2022-12-26 11:47:33 +01:00
# than local.
2023-02-28 12:44:53 +01:00
WGET_OPTIONS = "-c -N -q --show-progress"
2023-01-02 12:42:32 +01:00
2023-01-25 21:23:31 +01:00
# Curl downloader options.
# Pass the options you want here.
2023-02-28 12:44:53 +01:00
CURL_OPTIONS = ""
2023-01-25 21:23:31 +01:00
2023-02-27 10:06:44 +01:00
# If silent mode is true, it does not print the commands as they are executed.
# Default is true. [true/false].
2023-02-28 12:44:53 +01:00
SILENT_MODE = true
2023-01-29 21:25:29 +01:00
# Choose ascii printable characters.
2023-02-27 10:06:44 +01:00
# If true, it uses the extended characters, otherwise the basic ones.
# Default is true. [true/false].
2023-02-28 12:44:53 +01:00
ASCII_CHARACTERS = true