diff options
author | Memphiz <memphis@machzwo.de> | 2014-04-29 20:22:08 +0200 |
---|---|---|
committer | da-anda <da-anda@xbmc.org> | 2014-05-02 00:59:17 +0200 |
commit | 889ccad90145238f09653e1ce66686598af5286e (patch) | |
tree | af2f7069d4ff674d354c284b9d32267461cd9d50 /tools | |
parent | 30b1e8773e96242cbd228667d871d8f32a5eef06 (diff) |
[cydia] - remote iconpack script - iconpack is not needed anymore - http://mirrors.xbmc.org/apt/pre-release/ios/CydiaIcon.png is used for it - should be replaced with media/iOS/rounded/AppIcon57x57.png
Diffstat (limited to 'tools')
-rw-r--r-- | tools/darwin/packaging/xbmc-icon/mirrors.xbmc.org.png | bin | 5927 -> 0 bytes | |||
-rwxr-xr-x | tools/darwin/packaging/xbmc-icon/mkdeb-xbmc-iconpack.sh | 59 |
2 files changed, 0 insertions, 59 deletions
diff --git a/tools/darwin/packaging/xbmc-icon/mirrors.xbmc.org.png b/tools/darwin/packaging/xbmc-icon/mirrors.xbmc.org.png Binary files differdeleted file mode 100644 index 9d860f5c24..0000000000 --- a/tools/darwin/packaging/xbmc-icon/mirrors.xbmc.org.png +++ /dev/null diff --git a/tools/darwin/packaging/xbmc-icon/mkdeb-xbmc-iconpack.sh b/tools/darwin/packaging/xbmc-icon/mkdeb-xbmc-iconpack.sh deleted file mode 100755 index b24ffc47d4..0000000000 --- a/tools/darwin/packaging/xbmc-icon/mkdeb-xbmc-iconpack.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/sh - -if [ -f "/usr/bin/sudo" ]; then - SUDO="/usr/bin/sudo" -fi - -PACKAGE=org.xbmc.xbmc-iconpack - -VERSION=1.0 -REVISION=0 -ARCHIVE=${PACKAGE}_${VERSION}-${REVISION}_iphoneos-arm.deb - -echo Creating $PACKAGE package version $VERSION revision $REVISION -${SUDO} rm -rf $PACKAGE -${SUDO} rm -rf $ARCHIVE - -# create debian control file. -mkdir -p $PACKAGE/DEBIAN -echo "Package: $PACKAGE" > $PACKAGE/DEBIAN/control -echo "Priority: Extra" >> $PACKAGE/DEBIAN/control -echo "Name: XBMC-IconPack" >> $PACKAGE/DEBIAN/control -echo "Version: $VERSION-$REVISION" >> $PACKAGE/DEBIAN/control -echo "Architecture: iphoneos-arm" >> $PACKAGE/DEBIAN/control -echo "Description: XBMC Icon Pack" >> $PACKAGE/DEBIAN/control -echo "Homepage: http://xbmc.org/" >> $PACKAGE/DEBIAN/control -echo "Maintainer: TeamXBMC" >> $PACKAGE/DEBIAN/control -echo "Author: TeamXBMC" >> $PACKAGE/DEBIAN/control -echo "Section: Multimedia" >> $PACKAGE/DEBIAN/control -echo "Icon: file:///Applications/Cydia.app/Sources/mirrors.xbmc.org.png" >> $PACKAGE/DEBIAN/control - -# prerm: called on remove and upgrade - get rid of existing bits. -echo "#!/bin/sh" > $PACKAGE/DEBIAN/prerm -echo "rm -f /Applications/Cydia.app/Sources/mirrors.xbmc.org.png">> $PACKAGE/DEBIAN/prerm -chmod +x $PACKAGE/DEBIAN/prerm - -# postinst: nothing for now. -echo "#!/bin/sh" > $PACKAGE/DEBIAN/postinst -chmod +x $PACKAGE/DEBIAN/postinst - -# create the patch directory and copy in patch -mkdir -p $PACKAGE/Applications/Cydia.app/Sources -cp mirrors.xbmc.org.png $PACKAGE/Applications/Cydia.app/Sources/ - -# set ownership to root:root -${SUDO} chown -R 0:0 $PACKAGE - -echo Packaging $PACKAGE -# Tell tar, pax, etc. on Mac OS X 10.4+ not to archive -# extended attributes (e.g. resource forks) to ._* archive members. -# Also allows archiving and extracting actual ._* files. -export COPYFILE_DISABLE=true -export COPY_EXTENDED_ATTRIBUTES_DISABLE=true -# -../../ios-depends/build/bin/dpkg-deb -b $PACKAGE $ARCHIVE -../../ios-depends/build/bin/dpkg-deb --info $ARCHIVE -../../ios-depends/build/bin/dpkg-deb --contents $ARCHIVE - -# clean up by removing package dir -${SUDO} rm -rf $PACKAGE |