Update manuals
This commit is contained in:
parent
1d494b87ff
commit
9dce5b0a68
4 changed files with 21 additions and 22 deletions
|
@ -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.
|
||||||
|
|
||||||
|
|
11
man/aps.8.md
11
man/aps.8.md
|
@ -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.
|
|
@ -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
|
|
|
@ -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
|
Loading…
Reference in a new issue