From f190895d30b5d9d9fb57c007bbf995e8bf5f746c Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 2 Jun 2011 09:01:11 +0200 Subject: [PATCH] xbps-src::info_tmpl(): also print $homepage and $license. --- xbps-src/shutils/tmpl_funcs.sh.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xbps-src/shutils/tmpl_funcs.sh.in b/xbps-src/shutils/tmpl_funcs.sh.in index 5bc219eb45e..b700d84c1c9 100644 --- a/xbps-src/shutils/tmpl_funcs.sh.in +++ b/xbps-src/shutils/tmpl_funcs.sh.in @@ -45,6 +45,8 @@ info_tmpl() done [ -n "$noarch" ] && echo "noarch: yes" echo "maintainer: $maintainer" + [ -n "$homepage" ] && echo "Upstream URL: $homepage" + [ -n "$license" ] && echo "License(s): $license" echo "build_style: $build_style" for i in ${configure_args}; do [ -n "$i" ] && echo "configure_args: $i"