diff options
Diffstat (limited to 'control.sh')
-rwxr-xr-x | control.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/control.sh b/control.sh index f7d28c42a..e111fbbcc 100755 --- a/control.sh +++ b/control.sh @@ -73,6 +73,17 @@ for dep in "${PKG_DEPS[@]}"; do echo -n " $(basename "${dep}" .dep)" done +if [[ -e ${PKG_DATA}/_metadata/depends ]]; then + if [[ ${comma+@} == @ ]]; then + echo -n "," + else + echo -n "Depends:" + comma= + fi + + echo -n " $(cat "${PKG_DATA}/_metadata/depends")" +fi + if [[ ${comma+@} == @ ]]; then echo fi |