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
|
||||
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.
|
||||
|
||||
|
|
11
man/aps.8.md
11
man/aps.8.md
|
@ -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.
|
|
@ -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 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
|
Loading…
Reference in a new issue