diff options
author | Jay Freeman <saurik@saurik.com> | 2008-06-16 20:04:53 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-06-16 20:04:53 +0000 |
commit | b2d5aa18709780c1e075295e739bc1222323d4d5 (patch) | |
tree | bbcc35c6fdf3a7956c04c26dad02be75a5f4a3ca | |
parent | da867033916f9a1c940ca49813df5bcbdc202059 (diff) |
Added support for Provides: to control generation.
git-svn-id: http://svn.telesphoreo.org/trunk@318 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 296081ed2..a4b286475 100755 --- a/control.sh +++ b/control.sh @@ -105,6 +105,12 @@ Conflicts: $(cat "${PKG_DATA}/_metadata/conflicts") EOF fi +if [[ -e ${PKG_DATA}/_metadata/provides ]]; then + cat <<EOF +Provides: $(cat "${PKG_DATA}/_metadata/provides") +EOF +fi + cat <<EOF Description: $(head -n 1 "${PKG_DATA}/_metadata/description") EOF |