1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-09-30 21:40:55 -06:00
kiss/README.md

37 lines
740 B
Markdown
Raw Normal View History

2019-06-13 08:49:05 -06:00
# kiss
Tiny package manager for KISS Linux.
2019-06-13 11:22:08 -06:00
2019-06-13 08:49:05 -06:00
## Package format
2019-07-18 16:45:03 -06:00
See: <https://getkiss.org/pages/package-system/>
2019-06-13 11:22:08 -06:00
2019-06-13 11:32:46 -06:00
## Getting started
Add these to your `shellrc`.
```sh
# The location to install packages (Optional).
# Default: /
export KISS_ROOT=~/.kiss
```
## Usage
```sh
➜ kiss
2019-07-27 10:55:00 -06:00
=> kiss [b|c|d|i|l|m|o|r|s|u] [pkg] [pkg] [pkg]
2019-06-13 11:32:46 -06:00
=> build: Build a package.
=> checksum: Generate checksums.
2019-07-16 05:53:38 -06:00
=> depends: List package dependencies.
2019-06-13 11:32:46 -06:00
=> install: Install a package (Runs build if needed).
2019-07-27 10:55:00 -06:00
=> list: List installed packages.
=> manifest: List package files owned by package.
=> owns: Check which package owns a file.
2019-06-13 11:32:46 -06:00
=> remove: Remove a package.
2019-07-16 05:53:38 -06:00
=> search: Search for a package.
2019-06-13 11:32:46 -06:00
=> update: Check for updates.
```