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 alnux-pkg-standard(7)
file structure: \ # APS/Alnux packaging standard
build (Shell/DSL) \ # file structure:
sha256 (DSL, seperate files for every sum) \ - build (Shell/DSL)
sources (DSL, seperate files for every source) \ - sha256 (DSL, seperate files for every sum)
package (DSL, variable) \ - sources (DSL, seperate files for every source)
expectations, and alnux: \ - package (DSL, variable)
alnux is probably a diffrent distro than KISS. So don't try to install KISS packages on AL. \ # 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 aps(8)
to patch aps, mail the alnux dev team the patch.\ # APS version 0.1.0
for pkg standards, visit alnux-pkg-standard.7. \ # Patching APS:
Note: APS contains some old code still, it's been updated to support alot of standards. \ 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 aps.8
rm alnux-pkg-standard.7 rm alnux-pkg-standard.7
} }
function panbuild(){ function scdocbuild(){
set -x set -x
pandoc aps.8.md -f markdown -t man -o aps.8 -s scdoc < aps.8.md > aps.8
pandoc alnux-pkg-standard.7.md -f markdown -t man -o alnux-pkg-standard.7 -s scdoc < alnux-pkg-standard.7.md > alnux-pkg-standard.7
} }
function main(){ function main(){
case $1 in case $1 in
panbuild) panbuild ;; panbuild) scdocbuild || echo "scdoc is missing!" ;;
clean) clean ;; clean) clean ;;
*) panbuild ;; *) scdocbuild || echo "scdoc is missing" ;;
esac esac
} }
main $1 main $1