diff options
author | midipix <writeonce@midipix.org> | 2020-01-10 15:59:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-10 16:02:55 +0000 |
commit | 65af0483772d9dc15f1d291ba6b6098943f5d562 (patch) | |
tree | 0f47c7d7182166243485613cb7f5061b7fdf6fcc /sofort/tools | |
parent | 308d6a928852da8535900d1b548d01e79398f22a (diff) | |
download | w32lib-65af0483772d9dc15f1d291ba6b6098943f5d562.tar.bz2 w32lib-65af0483772d9dc15f1d291ba6b6098943f5d562.tar.xz |
build system: add --pkgbugs (where to file) and --pkghome (project home page).
Diffstat (limited to 'sofort/tools')
-rwxr-xr-x | sofort/tools/pkgconf.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sofort/tools/pkgconf.sh b/sofort/tools/pkgconf.sh index bcde970..a69c25b 100755 --- a/sofort/tools/pkgconf.sh +++ b/sofort/tools/pkgconf.sh @@ -94,6 +94,20 @@ else pkgconf_durl="Distro: ${PKGCONF_DURL}" fi +# bug reports (optional) +if [ -z "${PKGCONF_BUGS}" ]; then + pkgconf_bugs='#' +else + pkgconf_bugs="Bug reports: ${PKGCONF_BUGS}" +fi + +# project home page (optional) +if [ -z "${PKGCONF_HOME}" ]; then + pkgconf_home='#' +else + pkgconf_home="Home page: ${PKGCONF_HOME}" +fi + # output (without trailing spaces) cat << _EOF | grep -v '^#' | sed 's/[ \t]*$//' @@ -110,6 +124,8 @@ Version: ${PKGCONF_VERSION} $pkgconf_repo $pkgconf_psrc $pkgconf_durl +$pkgconf_bugs +$pkgconf_home Cflags: $pkgconf_cflags Libs: $pkgconf_ldflags |