Add a man page for abuild.conf

For those familiar with abuild all this content is obvious. For
newcomers, the only way to figure this out is by reading abuild's
source code.
This commit is contained in:
Hugo Osvaldo Barrera 2024-06-23 15:52:37 +02:00 committed by Natanael Copa
parent 5cae4119f9
commit 8eaa065f3a
3 changed files with 31 additions and 2 deletions

View File

@ -12,7 +12,7 @@ SCRIPTS := abuild abuild-keygen abuild-sign newapkbuild \
apkbuild-gem-resolver
USR_BIN_FILES := $(SCRIPTS) abuild-tar abuild-gzsplit abuild-sudo abuild-fetch abuild-rmtemp
MAN_1_PAGES := newapkbuild.1 abuild.1 abump.1
MAN_5_PAGES := APKBUILD.5
MAN_5_PAGES := APKBUILD.5 abuild.conf.5
SAMPLES := sample.APKBUILD sample.initd sample.confd \
sample.pre-install sample.post-install
MAN_PAGES := $(MAN_1_PAGES) $(MAN_5_PAGES)

View File

@ -209,7 +209,7 @@ abuild -rc
# SEE ALSO
SPDX license reference (on the Web at <https://spdx.org/licenses/>),
newapkbuild(1), apk(8), APKBUILD(5).
newapkbuild(1), apk(8), APKBUILD(5), abuild.conf(5).
# AUTHORS

29
abuild.conf.5.scd Normal file
View File

@ -0,0 +1,29 @@
abuild.conf(5)
# NAME
*abuild.conf* - configuration file for abuild
# DESCRIPTION
*abuild.conf* is the configuration for the *abuild(1)* program.
# FORMAT
The configuration file is parsed as a shell script; variables are defined as
regular shell variables.
For a list of supported variables, see the ENVIRONMENT section of the
*abuild(1)* manual page.
# EXAMPLE
```
PACKAGER_PRIVKEY="/home/jane/.abuild/jane@example.com-87ac18ca.rsa"
PACKAGER="Jane Doe <jane@example.com>"
USE_COLORS=1
```
# SEE ALSO
abuild(1)