aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: cfbdf094d7f9c9b809d08ada1f7c2a790cd17a34 (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
43
44
45
46
47
48
49
50
51
# kiss

Tiny package manager for KISS Linux.


## Table of Contents

<!-- vim-markdown-toc GFM -->

* [Package format](#package-format)
* [Getting started](#getting-started)
* [Usage](#usage)

<!-- vim-markdown-toc -->


## Package format

See: <https://kissx.github.io/pages/package-system/>


## Getting started

Add these to your `shellrc`.

```sh
# The location to install packages (Optional).
# Default: /
export KISS_ROOT=~/.kiss

# Repositories to use (Required).
# Colon separated like '$PATH'.
# Repositories will be search in order.
# Default: ''
export KISS_PATH=/packages/core:/packages/extra:/packages/xorg:/packages/public
```

## Usage

```sh kiss
=> kiss [b|c|i|l|r|s|u] [pkg]
=> build:     Build a package.
=> checksum:  Generate checksums.
=> depends:   List package dependencies.
=> install:   Install a package (Runs build if needed).
=> list:      List packages.
=> remove:    Remove a package.
=> search:    Search for a package.
=> update:    Check for updates.
```