2022-11-30 17:44:09 +01:00
|
|
|
[configs]
|
2022-10-19 20:18:25 +02:00
|
|
|
# OS architecture by default.
|
2022-12-02 20:13:40 +01:00
|
|
|
os_arch = "x86_64"
|
2022-10-19 19:18:13 +02:00
|
|
|
|
2022-10-22 18:46:10 +02:00
|
|
|
# Tmp path for slpkg.
|
2022-11-30 17:44:09 +01:00
|
|
|
tmp_slpkg = "/tmp/slpkg"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
|
|
|
# Path for building source and the script
|
2022-11-30 17:44:09 +01:00
|
|
|
build_path = "/tmp/slpkg/build"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
|
|
|
# This path working only with the command download.
|
2022-11-30 17:44:09 +01:00
|
|
|
download_only = "/tmp/slpkg"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
|
|
|
# The path that the SLACKBUILDS.TXT file downloaded.
|
2022-12-02 20:14:20 +01:00
|
|
|
sbo_repo_path = "/var/lib/slpkg/repository"
|
2022-10-19 19:18:13 +02:00
|
|
|
|
2022-10-22 18:46:10 +02:00
|
|
|
# The name of the database. Default name is 'database.slpkg'.
|
2022-11-30 17:44:09 +01:00
|
|
|
database = "database.slpkg"
|
2022-10-19 19:18:13 +02:00
|
|
|
|
2022-10-22 18:46:10 +02:00
|
|
|
# Slackbuilds.org repository url.
|
2022-11-30 17:44:09 +01:00
|
|
|
sbo_repo_url = "http://slackbuilds.org/slackbuilds/15.0"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
2022-11-03 17:52:01 +01:00
|
|
|
# The SLACKBUILDS.TXT repository file.
|
2022-11-30 17:44:09 +01:00
|
|
|
sbo_txt = "SLACKBUILDS.TXT"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
2022-11-03 17:52:01 +01:00
|
|
|
# The ChangeLog.txt file.
|
2022-12-25 17:26:17 +01:00
|
|
|
sbo_chglog_txt = "ChangeLog.txt"
|
2022-11-03 17:52:01 +01:00
|
|
|
|
2022-10-22 18:46:10 +02:00
|
|
|
# The sbo tar suffix.
|
2022-11-30 17:44:09 +01:00
|
|
|
sbo_tar_suffix = ".tar.gz"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
2022-11-08 20:11:25 +01:00
|
|
|
# The sbo repository tag.
|
2022-11-30 17:44:09 +01:00
|
|
|
sbo_repo_tag = "_SBo"
|
2022-10-19 19:18:13 +02:00
|
|
|
|
2022-12-25 17:24:52 +01:00
|
|
|
# Slackware install command. Instead you can
|
2022-10-22 18:46:10 +02:00
|
|
|
# use 'installpkg', if you want.
|
2022-11-30 17:44:09 +01:00
|
|
|
installpkg = "upgradepkg --install-new"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
|
|
|
# Upgrade or reinstall slackware command.
|
2022-11-30 17:44:09 +01:00
|
|
|
reinstall = "upgradepkg --reinstall"
|
2022-10-22 18:46:10 +02:00
|
|
|
|
2022-10-30 18:34:32 +01:00
|
|
|
# Slackware command to remove packages.
|
2022-11-30 17:44:09 +01:00
|
|
|
removepkg = "removepkg"
|
2022-10-19 19:18:13 +02:00
|
|
|
|
2022-12-02 20:28:23 +01:00
|
|
|
# Cli menu colors configs. Default is false. [true/false]
|
2022-12-25 17:22:54 +01:00
|
|
|
colors = true
|
2022-10-19 19:18:13 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
# 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-02 21:18:38 +01:00
|
|
|
# This effect how you see the download and
|
|
|
|
# how the packages build and install.
|
2023-01-02 21:19:05 +01:00
|
|
|
# Choose the view mode. Default is new. [new/old]
|
2023-01-02 21:16:32 +01:00
|
|
|
view_mode = "new"
|