mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 14:50:07 -07:00
docs: update
This commit is contained in:
parent
6ac7aa34fd
commit
e70a59f19b
24
README.md
Normal file
24
README.md
Normal file
@ -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.
|
||||
┘
|
||||
```
|
Loading…
Reference in New Issue
Block a user