mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
81 lines
No EOL
2.3 KiB
TOML
81 lines
No EOL
2.3 KiB
TOML
[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_PATH = "/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'.
|
|
DATABASE_NAME = "database.slpkg"
|
|
|
|
# Slackbuilds.org repository url.
|
|
SBO_REPO_URL = "https://slackbuilds.org/slackbuilds/15.0"
|
|
|
|
# The SLACKBUILDS.TXT repository file.
|
|
SBO_TXT = "SLACKBUILDS.TXT"
|
|
|
|
# The ChangeLog.txt file.
|
|
SBO_CHGLOG_TXT = "ChangeLog.txt"
|
|
|
|
# The sbo tar suffix.
|
|
SBO_TAR_SUFFIX = ".tar.gz"
|
|
|
|
# The sbo repository tag.
|
|
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"
|
|
|
|
# Slackware command to reinstall packages.
|
|
REINSTALL = "upgradepkg --reinstall"
|
|
|
|
# Slackware command to remove packages.
|
|
REMOVEPKG = "removepkg"
|
|
|
|
# Cli menu colors configs. Default is true. [true/false].
|
|
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
|
|
|
|
# You can choose downloader between wget and curl.
|
|
# Default is wget. [wget/curl].
|
|
DOWNLOADER = "wget"
|
|
|
|
# Wget downloader options.
|
|
# -c, --continue: resume getting a partially-downloaded file.
|
|
# -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.
|
|
# than local.
|
|
WGET_OPTIONS = "-c -N -q --show-progress"
|
|
|
|
# Curl downloader options.
|
|
# Pass the options you want here.
|
|
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
|
|
|
|
# Choose ascii printable characters.
|
|
# If true, it uses the extended characters, otherwise the basic ones.
|
|
# Default is true. [true/false].
|
|
ASCII_CHARACTERS = true |