diff options
author | Memphiz <memphis@machzwo.de> | 2015-07-21 23:42:45 +0200 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-07-21 23:43:33 +0200 |
commit | ff54355bde6d5c7d4e1d9b664b97ad63d29b1cc6 (patch) | |
tree | 66e0d6961a5d0f115f7460b8aa3f71ff5060b929 | |
parent | 2f34a0c9694a660c153f8bdd39d44cbc748ef2ce (diff) |
[ios/packaging] - ensure that the deb package has ios5.1 as minimum ios version
-rw-r--r-- | tools/darwin/packaging/ios/mkdeb-ios.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/darwin/packaging/ios/mkdeb-ios.sh.in b/tools/darwin/packaging/ios/mkdeb-ios.sh.in index c868141889..a638581b1d 100644 --- a/tools/darwin/packaging/ios/mkdeb-ios.sh.in +++ b/tools/darwin/packaging/ios/mkdeb-ios.sh.in @@ -67,11 +67,11 @@ mkdir -p $DIRNAME/$PACKAGE/DEBIAN echo "Package: $PACKAGE" > $DIRNAME/$PACKAGE/DEBIAN/control echo "Priority: Extra" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Name: @APP_NAME@-iOS" >> $DIRNAME/$PACKAGE/DEBIAN/control -echo "Depends: firmware (>= 4.1)" >> $DIRNAME/$PACKAGE/DEBIAN/control +echo "Depends: firmware (>= 5.1)" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Version: $VERSION-$REVISION" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Architecture: iphoneos-arm" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Installed-Size: $SIZE" >> $DIRNAME/$PACKAGE/DEBIAN/control -echo "Description: @APP_NAME@ Entertainment Center for 4.x iOS" >> $DIRNAME/$PACKAGE/DEBIAN/control +echo "Description: @APP_NAME@ Entertainment Center for 5.x iOS" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Homepage: http://kodi.tv/" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Maintainer: Memphiz" >> $DIRNAME/$PACKAGE/DEBIAN/control echo "Author: Team-@APP_NAME@" >> $DIRNAME/$PACKAGE/DEBIAN/control |