Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv

This commit is contained in:
Stephan Raue 2013-07-16 19:27:20 +02:00
commit cec71b28b1
2 changed files with 1 additions and 44 deletions

@ -1 +1 @@
Subproject commit b425b905f3eb417bace156a4526fbc29d8439e39
Subproject commit 1e49ac1aa413096c65aaa3631b8bec265c49753f

View File

@ -1,43 +0,0 @@
#!/bin/sh
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
#
# This Program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This Program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC.tv; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
# http://www.gnu.org/copyleft/gpl.html
################################################################################
echo "getting sources..."
if [ ! -d maraschino.git ]; then
git clone git://github.com/mrkipling/maraschino.git maraschino.git
fi
cd maraschino.git
git pull
GIT_REV=`git log -n1 --format=%h`
cd ..
echo "copying sources..."
rm -rf maraschino-$GIT_REV
cp -R maraschino.git maraschino-$GIT_REV
echo "cleaning sources..."
rm -rf maraschino-$GIT_REV/.git
echo "packing sources..."
tar cvJf maraschino-$GIT_REV.tar.xz maraschino-$GIT_REV
echo "remove temporary sourcedir..."
rm -rf maraschino-$GIT_REV