diff options
author | Jay Freeman <saurik@saurik.com> | 2008-05-08 19:09:18 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-05-08 19:09:18 +0000 |
commit | f43aedc654920ea76d56f2a2cc578957247e111b (patch) | |
tree | e6b4ae75d9a7350c105e6b01dd45df0e2baeb7f3 | |
parent | 91fe2809325d3dfb613daee474a648935ad1a88f (diff) |
Added Conflicts: support.
git-svn-id: http://svn.telesphoreo.org/trunk@271 514c082c-b64e-11dc-b46d-3d985efe055d
-rwxr-xr-x | control.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/control.sh b/control.sh index fca5380ee..9ab5022ac 100755 --- a/control.sh +++ b/control.sh @@ -88,6 +88,12 @@ if [[ ${comma+@} == @ ]]; then echo fi +if [[ -e ${PKG_DATA}/_metadata/conflicts ]]; then + cat <<EOF +Conflicts: $(cat "${PKG_DATA}/_metadata/conflicts") +EOF +fi + cat <<EOF Description: $(head -n 1 "${PKG_DATA}/_metadata/description") EOF |