From e70a59f19b9a2bf4f4ec9a54705a68f655e924f2 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 9 May 2019 10:59:27 +0300 Subject: [PATCH] docs: update --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..eaa48508 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# KISS Package Experiment. + +This is an alternative package system I am experimenting with. Instead of the usual `PKGBUILD`, `APKBUILD`, `xbps-template` and `Pkgfile` format, this repository explores a more unixy approach. + +Each Package is split into multiple files. + +```sh +zlib/ # Package name. +├─ build # Build script. +├─ depends # Dependencies (one per line). +├─ sources # Sources (one per line). +├─ version # Package version. +┘ + +# Files generated by the package manager. +├─ manifest # The built package's files and directories. +├─ checksums # The checksums for the source files. +┘ + +# Optional files. +├─ post_install # The script to run after install. +├─ release # Force a package update for the same version. +┘ +```