1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/README.md

116 lines
3.0 KiB
Markdown
Raw Normal View History

2019-06-13 14:49:05 +00:00
# kiss
Tiny package manager for KISS Linux.
2019-06-13 17:22:08 +00:00
2019-06-13 17:32:46 +00:00
## Table of Contents
<!-- vim-markdown-toc GFM -->
* [Package format](#package-format)
2019-06-16 14:44:10 +00:00
* [Dependencies](#dependencies)
2019-06-13 17:32:46 +00:00
* [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)
2019-07-14 07:06:04 +00:00
* [`kiss search pkg`](#kiss-search-pkg)
2019-06-13 17:32:46 +00:00
* [`kiss list` or `kiss list pkg`](#kiss-list-or-kiss-list-pkg)
* [`kiss update`](#kiss-update)
<!-- vim-markdown-toc -->
2019-06-13 14:49:05 +00:00
## Package format
See: <https://github.com/kissx/packages>
2019-06-13 17:22:08 +00:00
2019-06-16 14:44:10 +00:00
## Dependencies
2019-06-16 15:01:54 +00:00
POSIX `coreutils`:
2019-06-16 15:01:41 +00:00
2019-07-11 06:25:36 +00:00
- `cmp`
- `command`
- `cp`
- `find`
- `mkdir`
- `rm`
- `rmdir`
- `sed`
- `sh`
2019-06-16 15:01:41 +00:00
Other utilities:
2019-06-16 14:44:10 +00:00
- `file`
2019-07-11 06:25:36 +00:00
- `git`
2019-07-11 16:10:45 +00:00
- `rsync`
2019-06-16 15:17:34 +00:00
- `sha256sum` (Included in default `busybox`)
2019-07-11 06:25:36 +00:00
- `strip`
2019-06-16 15:17:34 +00:00
- `tar` (Included in default `busybox`)
- `wget`(Included in default `busybox`)
2019-06-16 14:44:10 +00:00
2019-06-13 17:32:46 +00:00
## 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?
2019-06-13 17:22:08 +00:00
### `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.
2019-07-14 07:06:04 +00:00
NOTE: `build` without an argument will rebuild the entire system.
2019-06-13 17:22:08 +00:00
### `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.
2019-07-14 07:06:04 +00:00
### `kiss search pkg`
Kiss's `search` operator searches all repositories for a package and prints
the full path to its repository files. Multiple arguments are welcome.
2019-06-13 17:22:08 +00:00
### `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.