From cb83e50f5522477e0f561f0e7e9137ed651549e9 Mon Sep 17 00:00:00 2001 From: George Vlahavas Date: Mon, 14 Dec 2020 14:05:58 +0200 Subject: [PATCH] slapt-src, spi: add page, slapt-get: fix example (#5014) --- pages/linux/slapt-get.md | 2 +- pages/linux/slapt-src.md | 25 +++++++++++++++++++++++++ pages/linux/spi.md | 28 ++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 pages/linux/slapt-src.md create mode 100644 pages/linux/spi.md diff --git a/pages/linux/slapt-get.md b/pages/linux/slapt-get.md index 0af3c82d69..df0cc8a761 100644 --- a/pages/linux/slapt-get.md +++ b/pages/linux/slapt-get.md @@ -17,7 +17,7 @@ - Upgrade all installed packages to their latest available versions: -`slapt-get --upgrade {{package_name}}` +`slapt-get --upgrade` - Locate packages of interest by the package name, disk set, or version: diff --git a/pages/linux/slapt-src.md b/pages/linux/slapt-src.md new file mode 100644 index 0000000000..6ebfc2d9d8 --- /dev/null +++ b/pages/linux/slapt-src.md @@ -0,0 +1,25 @@ +# slapt-src + +> A utility to automate building of slackbuilds. +> SlackBuild sources need to be configured in the slapt-srcrc file. +> More information: . + +- Update the list of available slackbuilds and versions: + +`slapt-src --update` + +- List all available slackbuilds: + +`slapt-src --list` + +- Fetch, build and install the specified slackbuild(s): + +`slapt-src --install {{slackbuild_name}}` + +- Locate slackbuilds of interest by their name or description: + +`slapt-src --search {{search_term}}` + +- Display information about a slackbuild: + +`slapt-src --show {{slackbuild_name}}` diff --git a/pages/linux/spi.md b/pages/linux/spi.md new file mode 100644 index 0000000000..a457907720 --- /dev/null +++ b/pages/linux/spi.md @@ -0,0 +1,28 @@ +# spi + +> A meta package manager that handles both packages and slackbuilds. +> More information: . + +- Update the list of available packages and slackbuilds: + +`spi --update` + +- Install a package or slackbuild: + +`spi --install {{package/slackbuild_name}}` + +- Upgrade all installed packages to the latest versions available: + +`spi --upgrade` + +- Locate packages or slackbuilds of interest by package name or description: + +`spi {{search_terms}}` + +- Display information about a package or slackbuild: + +`spi --show {{package/slackbuild_name}}` + +- Purge the local package and slackbuild caches: + +`spi --clean`