Updated pages

This commit is contained in:
Dimitris Zlatanidis 2023-06-30 11:53:14 +03:00
parent a581bdfecf
commit 356c724853
4 changed files with 20 additions and 12 deletions

View file

@ -9,8 +9,8 @@
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="122a51c9-ec79-4509-bab4-7ab1474a7769" name="Changes" comment="Updated for log path"> <list default="true" id="122a51c9-ec79-4509-bab4-7ab1474a7769" name="Changes" comment="Updated for log path">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/docs/manpages/en.md" beforeDir="false" afterPath="$PROJECT_DIR$/docs/manpages/en.md" afterDir="false" /> <change beforePath="$PROJECT_DIR$/docs/cli_usage/index.md" beforeDir="false" afterPath="$PROJECT_DIR$/docs/cli_usage/index.md" afterDir="false" />
<change beforePath="$PROJECT_DIR$/docs/manpages/fr.md" beforeDir="false" afterPath="$PROJECT_DIR$/docs/manpages/fr.md" afterDir="false" /> <change beforePath="$PROJECT_DIR$/docs/install.md" beforeDir="false" afterPath="$PROJECT_DIR$/docs/install.md" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />

View file

@ -1,6 +1,6 @@
# CLI USAGE # CLI USAGE
``` ```shell
slpkg - version 4.9.1 slpkg - version 4.9.1
USAGE: USAGE:

View file

@ -7,7 +7,7 @@ the `/etc/slpkg/repositories.toml` file, otherwise edit the file and set `true`
# Update database # Update database
The second step is to update the package lists and install the data to the database, just run: The second step is to update the package lists and install the data to the database, just run:
``` ```shell
$ slpkg update $ slpkg update
``` ```
@ -17,19 +17,19 @@ Now you are ready to start!
To install a package, run: To install a package, run:
``` ```shell
$ slpkg install <package_name> $ slpkg install <package_name>
``` ```
or change the repository: or change the repository:
``` ```shell
$ slpkg install <package_name> --repository=<repo_name> $ slpkg install <package_name> --repository=<repo_name>
``` ```
You can install a whole repository with the command: You can install a whole repository with the command:
``` ```shell
$ slpkg install '*' --repository=<repository_name> $ slpkg install '*' --repository=<repository_name>
``` ```
@ -37,7 +37,7 @@ $ slpkg install '*' --repository=<repository_name>
To remove a package with the dependencies: To remove a package with the dependencies:
``` ```shell
$ slpkg remove <package_name> $ slpkg remove <package_name>
``` ```
@ -45,7 +45,7 @@ $ slpkg remove <package_name>
If you want to search a package from all repositories, run: If you want to search a package from all repositories, run:
``` ```shell
$ slpkg search <package_name> --repository='*' $ slpkg search <package_name> --repository='*'
``` ```
@ -53,7 +53,7 @@ $ slpkg search <package_name> --repository='*'
Edit the configuration `/etc/slpkg/slpkg.toml` file: Edit the configuration `/etc/slpkg/slpkg.toml` file:
``` ```shell
$ slpkg configs $ slpkg configs
``` ```
@ -61,6 +61,6 @@ For further information, please read the manpage:
## Manpage ## Manpage
``` ```shell
$ man slpkg $ man slpkg
``` ```

View file

@ -5,7 +5,7 @@
Download the last release: <a href="https://gitlab.com/dslackw/slpkg/-/archive/4.9.1/slpkg-4.9.1.tar.gz">slpkg-4.9.1.tar.gz</a> Download the last release: <a href="https://gitlab.com/dslackw/slpkg/-/archive/4.9.1/slpkg-4.9.1.tar.gz">slpkg-4.9.1.tar.gz</a>
## Install ## Install
``` ```shell
$ tar xvf slpkg-4.9.1.tar.gz $ tar xvf slpkg-4.9.1.tar.gz
$ cd slpkg-4.9.1 $ cd slpkg-4.9.1
$ ./install.sh $ ./install.sh
@ -16,6 +16,14 @@ The package will be installed as Slackware package.
Alternatively you can visit: <a href="https://slackbuilds.org/repository/15.0/system/slpkg/" target="_blank">SlackBuilds.org</a> repository. Alternatively you can visit: <a href="https://slackbuilds.org/repository/15.0/system/slpkg/" target="_blank">SlackBuilds.org</a> repository.
## Binary package
Download the binary package <a href="https://downloads.sourceforge.net/project/slpkg/binary/slpkg-4.9.1-x86_64-1_dsw.txz">slpkg-4.9.1-x86_64-1_dsw.txz</a>
```shell
$ upgradepkg --install-new slpkg-4.9.1-x86_64-1_dsw.txz
```
## Dependencies ## Dependencies
``` ```