mirror of
https://github.com/libretro/Lakka.git
synced 2024-12-13 10:41:15 +00:00
c268e0cfbe
Signed-off-by: Stephan Raue <stephan@openelec.tv>
25 lines
625 B
Bash
Executable File
25 lines
625 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "getting sources..."
|
|
svn checkout svn://svn.projects.openmoko.org/svnroot/siglaunchd/trunk siglaunchd-latest
|
|
|
|
echo "getting version..."
|
|
cd siglaunchd-latest
|
|
SVN_REV=`LANG=C svn info 2>/dev/null | grep Revision: | sed -e 's/.*\: //'`
|
|
echo $SVN_REV
|
|
cd ..
|
|
|
|
echo "copying sources..."
|
|
rm -rf siglaunchd-$SVN_REV
|
|
cp -R siglaunchd-latest siglaunchd-$SVN_REV
|
|
|
|
echo "cleaning sources..."
|
|
find siglaunchd-$SVN_REV -name .svn -exec rm -rf {} ";"
|
|
|
|
echo "packing sources..."
|
|
tar cvjf siglaunchd-$SVN_REV.tar.bz2 siglaunchd-$SVN_REV
|
|
|
|
echo "remove temporary sourcedir..."
|
|
rm -rf siglaunchd-$SVN_REV
|
|
|