diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2012-12-06 16:41:50 -0500 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-12-06 16:43:26 -0500 |
commit | a6821e5825c09de07784d37b16cc3d254825e629 (patch) | |
tree | 19b0fef1a59a6e12b97461a446b98aaa5b80e9fe | |
parent | 40a779fc08bbe956ea2a9703ad41b5996bf691ef (diff) |
[droid] exclude non-compatible addons from packaging
-rw-r--r-- | tools/android/packaging/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/android/packaging/Makefile b/tools/android/packaging/Makefile index 37620b238b..f9227f5661 100644 --- a/tools/android/packaging/Makefile +++ b/tools/android/packaging/Makefile @@ -8,6 +8,7 @@ OBJS = libcurl.so \ libxbmpeg2convert.so PLATFORM_OBJS = +EXCLUDED_ADDONS = screensaver.rsxs.euphoria visualization.dxspectrum visualization.milkdrop visualization.projectm XBMCROOT = $(shell cd $(CURDIR)/../../..; pwd) COPYDIRS = system addons language media @@ -58,6 +59,7 @@ extras: libs find `pwd`/xbmc/assets/ -depth -name ".git" -exec rm -rf {} \; find `pwd`/xbmc/assets/system/ -name "*.so" -exec rm {} \; find `pwd`/xbmc/assets/addons/skin.*/media/* -depth -not -iname "Textures.xbt" -exec rm -rf {} \; + cd xbmc/assets/addons; rm -rf $(EXCLUDED_ADDONS) cp -rfp $(PREFIX)/lib/python2.6 xbmc/assets/python2.6/lib/ cp -rfp $(XBMCROOT)/media/Splash.png xbmc/res/drawable/splash.png cd xbmc/assets/python2.6/lib/python2.6/; rm -rf test config lib-dynload |