shutils/show.sh: add support for showing build_helper

This commit is contained in:
maxice8 2019-01-21 00:51:21 -02:00
parent e30a9c8908
commit a4f786276a
No known key found for this signature in database
GPG Key ID: 543B9D4F4299F06B
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@ show_pkg() {
[ -n "$homepage" ] && echo "Upstream URL: $homepage"
[ -n "$license" ] && echo "License(s): $license"
[ -n "$build_style" ] && echo "build_style: $build_style"
for i in $build_helper; do
[ -n "$i" ] && echo "build_helper: $i"
done
for i in ${configure_args}; do
[ -n "$i" ] && echo "configure_args: $i"
done