aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-13 17:22:08 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-13 17:22:08 +0000
commit84486846a78c71bc004e58c1fc265f055a25e652 (patch)
treef55f460190e6bdbebabf4e04032306bbdecabc13 /README.md
parentc851713e0f02d192c21fe95247ac3b4e87a86c00 (diff)
downloadcpt-84486846a78c71bc004e58c1fc265f055a25e652.tar.gz
docs: update
FossilOrigin-Name: 442061867a5624781fd6696395b18568b24673d8be8bc9ef5afafe1e76d4af89
Diffstat (limited to 'README.md')
-rw-r--r--README.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3c32257..3a54aec 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,49 @@ Tiny package manager for KISS Linux.
**NOTE:** I am in the process of adding multi-repository support and the package manager is currently in a non-working state. Once this feature is added things will work as normal.
+
## Package format
See: <https://github.com/kissx/packages>
+
+
+## Getting started with `kiss`
+
+Kiss is a simple package manager written in POSIX `sh`.
+
+Kiss has 6 different "operators".
+
+- `build`: Build a package.
+- `checksum`: Generate checksums for a package.
+- `install`: Install a built package.
+- `remove`: Remove an installed package.
+- `list`: List installed packages.
+- `update`: List packages with available updates.
+
+### `kiss build pkg`
+
+Kiss's `build` operator handles a package from its source code to the installable `.tar.gz` file. Sources are downloaded, checksums are verified, dependencies are checked and the package is compiled then packaged.
+
+### `kiss checksum pkg`
+
+Kiss's `checksum` operator generates the initial checksums for a package from every source in the `sources` file.
+
+### `kiss install pkg`
+
+Kiss's `install` operator takes the built `.tar.gz` file and installs it in the system. This is as simple as removing the old version of the package (*if it exists*) and unpacking the archive at `/`.
+
+### `kiss remove pkg`
+
+Kiss's `remove` operator uninstalls a package from your system. Files and directories in `/etc` are untouched. Support for exclusions will come as they are needed.
+
+### `kiss list` or `kiss list pkg`
+
+Kiss's `list` operator lists the installed packages and their versions. Giving `list` an argument will check if a singular package is installed.
+
+### `kiss update`
+
+Kiss's `update` operator compares the repository versions of packages to the installed database versions of packages. Any mismatch in versions is considered a new upgrade from the repository.
+
+The `update` mechanism doesn't do a `git pull` of the repository. This must be done manually beforehand and is intentional. It allows the user to `git pull` selectively. You can slow down the distribution's package updates by limiting pulling to a week behind master for example.
+
+