diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-07-16 11:53:38 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-07-16 11:53:38 +0000 |
commit | cf2c23efb6e75622f2fc3fa0e203b44fecbaa5ca (patch) | |
tree | 58ed7b38547b1d6ef115f8224c776151f56df992 | |
parent | f97fee6d9e9c0580d9b7f0e32a262bcd8d3458c9 (diff) | |
download | cpt-cf2c23efb6e75622f2fc3fa0e203b44fecbaa5ca.tar.gz |
docs: update
FossilOrigin-Name: 348b280ad291e9e6819dae5724986a7d1b4e33e94f9be6498f4f2525e7fd7404
-rw-r--r-- | README.md | 35 |
1 files changed, 6 insertions, 29 deletions
@@ -8,7 +8,6 @@ Tiny package manager for KISS Linux. <!-- vim-markdown-toc GFM --> * [Package format](#package-format) -* [Dependencies](#dependencies) * [Getting started](#getting-started) * [Usage](#usage) @@ -17,33 +16,9 @@ Tiny package manager for KISS Linux. ## Package format -See: <https://github.com/kissx/packages> +See: <https://kissx.github.io/pages/package-system/> -## Dependencies - -POSIX `coreutils`: - -- `cmp` -- `command` -- `cp` -- `find` -- `mkdir` -- `rm` -- `rmdir` -- `sed` -- `sh` - -Other utilities: - -- `file` -- `git` -- `rsync` -- `sha256sum` (Included in default `busybox`) -- `strip` -- `tar` (Included in default `busybox`) -- `wget`(Included in default `busybox`) - ## Getting started Add these to your `shellrc`. @@ -56,19 +31,21 @@ export KISS_ROOT=~/.kiss # Repositories to use (Required). # Colon separated like '$PATH'. # Repositories will be search in order. -# Default: -export KISS_PATH=~/projects/kiss-new/repo +# Default: '' +export KISS_PATH=/packages/core:/packages/extra:/packages/xorg:/packages/public ``` ## Usage ```sh ➜ kiss -=> kiss [b|c|i|l|r|u] [pkg] +=> 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. ``` |