Update manuals

This commit is contained in:
Ohio2 2021-10-06 19:37:46 +02:00
parent 1d494b87ff
commit 9dce5b0a68
Signed by: Ohio2
GPG key ID: 2746D0A9E4F21E80
4 changed files with 21 additions and 22 deletions

View file

@ -1,9 +1,10 @@
#### APS/Alnux packaging standard
file structure: \
build (Shell/DSL) \
sha256 (DSL, seperate files for every sum) \
sources (DSL, seperate files for every source) \
package (DSL, variable) \
expectations, and alnux: \
alnux is probably a diffrent distro than KISS. So don't try to install KISS packages on AL. \
alnux-pkg-standard(7)
# APS/Alnux packaging standard
# file structure:
- build (Shell/DSL)
- sha256 (DSL, seperate files for every sum)
- sources (DSL, seperate files for every source)
- package (DSL, variable)
# expectations, and alnux:
alnux is probably a diffrent distro than KISS. So don't try to install KISS packages on AL.

View file

@ -1,4 +1,7 @@
#### APS version 0.1.0
to patch aps, mail the alnux dev team the patch.\
for pkg standards, visit alnux-pkg-standard.7. \
Note: APS contains some old code still, it's been updated to support alot of standards. \
aps(8)
# APS version 0.1.0
# Patching APS:
either make a (.diff, .patch., .fix) file, sign it, mail it, or
mail it without the patch file, just the fix. (Mail it to APS dev team of course.)
# Packaging:
visit alnux-pkg-standard.7 for further info.

View file

@ -1,5 +0,0 @@
.TH aps "v0.1.0"
.SH aps - alnux package manager
.SP .SH ALNUX PACKAGE MANAGER - subpages: alnux-pkg-standard.7.
To submit patches, contact the alnux dev team via mail (mailing list).
If you need help refer to the wiki

View file

@ -4,16 +4,16 @@ function clean(){
rm aps.8
rm alnux-pkg-standard.7
}
function panbuild(){
function scdocbuild(){
set -x
pandoc aps.8.md -f markdown -t man -o aps.8 -s
pandoc alnux-pkg-standard.7.md -f markdown -t man -o alnux-pkg-standard.7 -s
scdoc < aps.8.md > aps.8
scdoc < alnux-pkg-standard.7.md > alnux-pkg-standard.7
}
function main(){
case $1 in
panbuild) panbuild ;;
panbuild) scdocbuild || echo "scdoc is missing!" ;;
clean) clean ;;
*) panbuild ;;
*) scdocbuild || echo "scdoc is missing" ;;
esac
}
main $1