Commit e8d5bc7c authored by Sam Lantinga's avatar Sam Lantinga

Updated the snapshot script for Mercurial

parent 42a3df6f
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# Generate a current snapshot from source control # Generate a current snapshot from source control
echo "Checking out source" echo "Checking out source"
svn co -q http://svn.libsdl.org/trunk/SDL hg clone http://hg.libsdl.org/SDL || exit $?
(cd SDL && ./autogen.sh && rm -rf autom4te.cache) (cd SDL && ./autogen.sh && rm -rf autom4te.cache)
sh SDL/build-scripts/updaterev.sh sh SDL/build-scripts/updaterev.sh
cp SDL/include/SDL_config.h.default SDL/include/SDL_config.h cp SDL/include/SDL_config.h.default SDL/include/SDL_config.h
...@@ -15,7 +15,7 @@ minor=`fgrep "#define SDL_MINOR_VERSION" SDL/include/SDL_version.h | \ ...@@ -15,7 +15,7 @@ minor=`fgrep "#define SDL_MINOR_VERSION" SDL/include/SDL_version.h | \
patch=`fgrep "#define SDL_PATCHLEVEL" SDL/include/SDL_version.h | \ patch=`fgrep "#define SDL_PATCHLEVEL" SDL/include/SDL_version.h | \
sed 's,[^0-9]*\([0-9]*\),\1,'` sed 's,[^0-9]*\([0-9]*\),\1,'`
rev=`fgrep "#define SDL_REVISION" SDL/include/SDL_revision.h | \ rev=`fgrep "#define SDL_REVISION" SDL/include/SDL_revision.h | \
sed 's,[^0-9]*\([0-9]*\),\1,'` sed 's,[^0-9]*\([0-9]*\):.*,\1,'`
path="SDL-$major.$minor.$patch-$rev" path="SDL-$major.$minor.$patch-$rev"
mv SDL $path mv SDL $path
...@@ -25,9 +25,3 @@ echo $path.zip ...@@ -25,9 +25,3 @@ echo $path.zip
rm -f $path.zip rm -f $path.zip
zip -rq $path.zip $path zip -rq $path.zip $path
rm -rf $path rm -rf $path
#ln -sf $path.tar.gz SDL-1.3.tar.gz
#ln -sf $path.zip SDL-1.3.zip
#date=`date +"%a %b %e"`
#sed -e "s/<-- SDL 1.3 DATE -->.*/<-- SDL 1.3 DATE --> $date/" <../svn.php >../svn.php.new
#mv ../svn.php.new ../svn.php
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment