1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-09-28 12:22:39 -06:00
Go to file
2019-07-16 14:51:28 +03:00
.travis.yml docs: update 2019-07-16 11:05:05 +03:00
kiss version: bump 2019-07-16 14:51:28 +03:00
LICENSE.md docs: update 2019-06-13 17:49:05 +03:00
README.md version: bump 2019-07-16 14:51:28 +03:00

kiss

Tiny package manager for KISS Linux.

Table of Contents

Package format

See: https://github.com/kissx/packages

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.

# 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

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.