slpkg/configs/slpkg.toml

78 lines
2.1 KiB
TOML
Raw Normal View History

[configs]
# OS architecture by default.
os_arch = "x86_64"
# Tmp path for slpkg.
tmp_slpkg = "/tmp/slpkg"
# Path for building source and the script
build_path = "/tmp/slpkg/build"
# This path working only with the command download.
download_only = "/tmp/slpkg"
# The path that the SLACKBUILDS.TXT file downloaded.
sbo_repo_path = "/var/lib/slpkg/repository"
# The name of the database. Default name is 'database.slpkg'.
2023-01-16 23:47:01 +01:00
database_name = "database.slpkg"
# Slackbuilds.org repository url.
2023-01-25 19:38:48 +01:00
sbo_repo_url = "https://slackbuilds.org/slackbuilds/15.0"
# The SLACKBUILDS.TXT repository file.
sbo_txt = "SLACKBUILDS.TXT"
# The ChangeLog.txt file.
2022-12-25 17:26:17 +01:00
sbo_chglog_txt = "ChangeLog.txt"
# The sbo tar suffix.
sbo_tar_suffix = ".tar.gz"
# The sbo repository tag.
sbo_repo_tag = "_SBo"
2022-12-25 17:24:52 +01:00
# Slackware install command. Instead you can
# use 'installpkg', if you want.
installpkg = "upgradepkg --install-new"
# Upgrade or reinstall slackware command.
reinstall = "upgradepkg --reinstall"
# Slackware command to remove packages.
removepkg = "removepkg"
# Cli menu colors configs. Default is false. [true/false]
2022-12-25 17:22:54 +01:00
colors = true
2022-12-25 16:12:27 +01:00
# Dialog is a program that will let you to present
# a variety of questions or display messages using
# dialog boxes from a shell script.
# Default is true. [true/false]
dialog = true
2022-12-26 11:47:33 +01:00
2023-01-25 21:23:31 +01:00
# You can choose downloader between wget and curl:
# Default is wget.
downloader = "wget"
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-01-14 21:34:14 +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.
curl_options = ""
2023-01-15 18:49:34 +01:00
# If silent mode is true,
# do not print the commands as they are executed.
# Default is true. [true/false]
2023-01-29 21:25:29 +01:00
silent_mode = true
# Choose ascii printable characters.
# If true use the extended characters otherwise the basic ones.
# Default is true. [true/false]
ascii_characters = true