summaryrefslogtreecommitdiffstats
path: root/xbmc-generate-tarball-xz.sh
diff options
context:
space:
mode:
authorKen Dreyer <ktdreyer@ktdreyer.com>2013-10-16 10:59:55 -0600
committerKen Dreyer <ktdreyer@ktdreyer.com>2013-10-16 11:13:46 -0600
commiteca9279d6dc0a46b69353d35197041397ecc7ac5 (patch)
treed06b2e9f5951c208fd6d9944824189cbdea9bb1f /xbmc-generate-tarball-xz.sh
parent2df3c397e5a1cc3cb6208f6f2764675976f3ef7e (diff)
downloadxbmc-rpm-eca9279d6dc0a46b69353d35197041397ecc7ac5.tar.gz
xbmc-rpm-eca9279d6dc0a46b69353d35197041397ecc7ac5.tar.xz
xbmc-rpm-eca9279d6dc0a46b69353d35197041397ecc7ac5.zip
Update to Gotham alpha 8
- Add -devel subpackage - Drop bundled PVR addon (we'll package this separately)
Diffstat (limited to 'xbmc-generate-tarball-xz.sh')
-rwxr-xr-xxbmc-generate-tarball-xz.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/xbmc-generate-tarball-xz.sh b/xbmc-generate-tarball-xz.sh
index 60fff3e..484f975 100755
--- a/xbmc-generate-tarball-xz.sh
+++ b/xbmc-generate-tarball-xz.sh
@@ -1,13 +1,13 @@
#!/bin/sh
-MAJORVERSION=12
-MINORVERSION=2
-#PRERELEASE=Frodo_rc3
+MAJORVERSION=13
+MINORVERSION=0
+PRERELEASE=Gotham_alpha8
VERSION=${MAJORVERSION}.${MINORVERSION}${PRERELEASE:+-${PRERELEASE}}
-GITHUBURL=https://github.com/xbmc/xbmc/zipball/$VERSION-Frodo
-#GITHUBURL=https://github.com/xbmc/xbmc/zipball/$PRERELEASE
+#GITHUBURL=https://github.com/xbmc/xbmc/zipball/$VERSION-Frodo
+GITHUBURL=https://github.com/xbmc/xbmc/zipball/$PRERELEASE
# download zipball
if [[ ! -f xbmc-$VERSION.zip ]]; then
@@ -27,7 +27,7 @@ pushd xbmc-$VERSION
# grrr, *still* have to keep in ffmpeg for now (2011-12-28) since upstream
# seems to require files within that subdirectory <sigh>, filed
# http://trac.xbmc.org/ticket/12370
-for i in cximage-6.0/zlib libid3tag/zlib libhdhomerun libmpeg2 ffmpeg
+for i in cximage-6.0/zlib libhdhomerun libmpeg2 ffmpeg
do
rm -r lib/$i
done
@@ -40,26 +40,26 @@ done
# remove DVD stuff we can't ship, or is already in external libraries
-for i in libdvdcss libdvdread includes
+for i in libdvdcss libdvdread includes
do
rm -r lib/libdvd/$i
done
-# remove all prebuilt binaries (e.g., .so files and Win32 DLLs)
-find \( -type f -name '*.so' -o -name '*.DLL' -o -name '*.dll' -o -name '*.lib' -o -name '*.zlib' -o -name '*.obj' -o -name '*.exe' -o -name '*.vis' \) -print0 | xargs -0 rm -f
+# remove all prebuilt binaries (e.g., Win32 DLLs)
+find \( -type f -name '*.DLL' -o -name '*.dll' -o -name '*.lib' -o -name '*.obj' -o -name '*.exe' \) -print0 | xargs -0 rm -f
# remove all other packages that should be system-wide
-# except for libass, cpluff, jsoncpp (need to figure out how to
+# except for libass, cpluff (need to figure out how to
# remove these too)
# xbmc-dll-symbols seems to be XBMC-specific
-for i in enca freetype libbluray liblame libmicrohttpd libmodplug librtmp win32
+for i in enca freetype libbluray libmicrohttpd libmodplug librtmp win32
do
rm -r lib/$i
done
-# TODO/FIXME: remove tools/XBMCLive/ and other things under tools/
+# TODO/FIXME: remove other unnecessary things under tools/
# also remove anything to do with win32
-for i in arm darwin win32buildtools
+for i in android darwin win32buildtools
do
rm -r tools/$i
done