blob: 4b5162c688f6fad5a59a8225a50f504f1c0b71ad (
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
|
# kiss
Tiny package manager for KISS Linux.
## Package format
See: <https://getkiss.org/pages/package-system/>
## Getting started
Add these to your `shellrc`.
```sh
# The location to install packages (Optional).
# Default: /
export KISS_ROOT=~/.kiss
```
## Usage
```sh
➜ kiss
=> kiss [b|c|d|i|l|m|o|r|s|u] [pkg] [pkg] [pkg]
=> build: Build a package.
=> checksum: Generate checksums.
=> depends: List package dependencies.
=> install: Install a package (Runs build if needed).
=> list: List installed packages.
=> manifest: List package files owned by package.
=> owns: Check which package owns a file.
=> remove: Remove a package.
=> search: Search for a package.
=> update: Check for updates.
```
|