blob: d53124531fc4e52d39dadfd8b0256231ed78a7c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# kiss
Tiny and straightforward package manager for KISS written in POSIX `sh`.
- Only 500~ lines of POSIX `sh` (*excluding blank lines and comments*).
- Runtime dependency detection.
- Incremental package installation.
- Fast dependency solver.
- File conflict detection.
- Binary stripping.
- `shellcheck` compliant.
## Usage
```sh
➜ kiss
=> kiss [b|c|i|l|r|s|u] [pkg] [pkg] [pkg]
=> build: Build a package.
=> checksum: Generate checksums.
=> install: Install a package.
=> list: List installed packages.
=> remove: Remove a package.
=> search: Search for a package.
=> update: Check for updates.
```
## Package format
See: <https://getkiss.org/pages/package-system/>
## Extending the package manager
See: https://github.com/kisslinux/kiss-utils
## Shell compatibility
KISS is written in POSIX `sh` though each shell has its own set of quirks. Below are the currently known to work and tested shells (as `/bin/sh`).
- `ash`
- `dash`
- `bash`
|