summaryrefslogtreecommitdiffstats
path: root/Necessitas_SDK/sdk_cleanup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Necessitas_SDK/sdk_cleanup.sh')
-rw-r--r--Necessitas_SDK/sdk_cleanup.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/Necessitas_SDK/sdk_cleanup.sh b/Necessitas_SDK/sdk_cleanup.sh
new file mode 100644
index 0000000..0d1d161
--- /dev/null
+++ b/Necessitas_SDK/sdk_cleanup.sh
@@ -0,0 +1,16 @@
+# remove things which are not ready for release
+function removeUnusedPackages
+{
+ # x86 support needs much more love than just a compilation, QtCreator needs to handle it correctly
+ rm -fr $TEMP_PATH/out/necessitas/sdk_src/org.kde.necessitas.android.qt.x86
+
+ # Wait until Linaro toolchain is ready
+ rm -fr $TEMP_PATH/out/necessitas/sdk_src/org.kde.necessitas.misc.ndk.ma_r6
+
+ # Do we really need this packages ?
+ rm -fr $TEMP_PATH/out/necessitas/sdk_src/org.kde.necessitas.misc.ndk.gdb_head
+ rm -fr $TEMP_PATH/out/necessitas/sdk_src/org.kde.necessitas.misc.host_gdb_head
+
+ # OpenJDK needs to be handled into QtCeator
+ rm -fr $TEMP_PATH/out/necessitas/sdk_src/org.kde.necessitas.misc.openjdk
+}