slpkg/configs/slpkg.toml

65 lines
1.8 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-17 00:47:01 +02:00
database_name = "database.slpkg"
# Slackbuilds.org repository url.
sbo_repo_url = "http://slackbuilds.org/slackbuilds/15.0"
# The SLACKBUILDS.TXT repository file.
sbo_txt = "SLACKBUILDS.TXT"
# The ChangeLog.txt file.
2022-12-25 18:26:17 +02: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 18:24:52 +02: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 18:22:54 +02:00
colors = true
2022-12-25 17:12:27 +02: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 12:47:33 +02:00
# Wget downloader options.
# -c, --continue: resume getting a partially-downloaded file.
2023-01-14 22:34:14 +02: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 12:47:33 +02:00
# than local.
2023-01-14 22:34:14 +02:00
wget_options = "-c -N -q --show-progress"
2023-01-02 13:42:32 +02:00
2023-01-15 19:49:34 +02:00
# If silent mode is true,
# do not print the commands as they are executed.
# Default is true. [true/false]
2023-01-15 12:29:30 +02:00
silent_mode = true