From 4ba8f3ea1e8adbf042efb6c9d7efd81464496c9e Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Thu, 13 Jun 2019 17:32:46 +0000 Subject: docs: update FossilOrigin-Name: 0bb8051eb38fcf5cd5ee4943fa217ca2a0cfe532dba456e23188858c0590a081 --- README.md | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5aad2a7..b3ff461 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,59 @@ Tiny package manager for KISS Linux. **NOTE:** I am in the process of writing usage documentation. +## Table of Contents + + + +* [Package format](#package-format) +* [Getting started](#getting-started) +* [Usage](#usage) +* [How does each operator work?](#how-does-each-operator-work) + * [`kiss build pkg`](#kiss-build-pkg) + * [`kiss checksum pkg`](#kiss-checksum-pkg) + * [`kiss install pkg`](#kiss-install-pkg) + * [`kiss remove pkg`](#kiss-remove-pkg) + * [`kiss list` or `kiss list pkg`](#kiss-list-or-kiss-list-pkg) + * [`kiss update`](#kiss-update) + + + + ## Package format See: -## Getting started with `kiss` +## 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=~/projects/kiss-new/repo +``` + +## Usage + +```sh +➜ kiss +=> kiss [b|c|i|l|r|u] [pkg] +=> build: Build a package. +=> checksum: Generate checksums. +=> install: Install a package (Runs build if needed). +=> list: List packages. +=> remove: Remove a package. +=> update: Check for updates. +``` + +## How does each operator work? Kiss has 6 different "operators". -- cgit v1.2.3