2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
Go to file
2019-05-09 10:59:27 +03:00
repo/zlib new package manager experiment 2019-05-09 09:47:08 +03:00
.gitignore new package manager experiment 2019-05-09 09:46:50 +03:00
puke new package manager experiment 2019-05-09 09:46:50 +03:00
README.md docs: update 2019-05-09 10:59:27 +03:00

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.

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.