Remove make-snapshot.sh and README-snapshot.sh

This commit is contained in:
Bjorn Winckler
2008-08-16 14:36:15 +02:00
parent 90377d2495
commit d72aaeda7f
2 changed files with 0 additions and 67 deletions
-7
View File
@@ -1,7 +0,0 @@
This archive contains a snapshot of 'MacVim.app' and the shell script
'mvim'.
For usage instructions, please start MacVim and type ":h macvim"
(without the quotes).
MacVim requires a PPC or Intel Mac running Mac OS X 10.4 or 10.5.
-60
View File
@@ -1,60 +0,0 @@
#!/bin/sh
export MACOSX_DEPLOYMENT_TARGET=10.4
# Increment build number
/Developer/usr/bin/agvtool next-version -all > /dev/null
# Get current build number
BUILDNUM=`/Developer/usr/bin/agvtool what-version -terse`
DEST=~/Desktop/MacVim-snapshot-$BUILDNUM
echo '****************************************************'
echo " BUILDING SNAPSHOT $BUILDNUM"
echo '****************************************************'
echo ''
# Build Vim binary
echo 'BUILDING VIM BINARY'
echo ' running configure...'
cd .. && ./configure --enable-gui=macvim --with-mac-arch=both \
--with-features=huge --enable-pythoninterp \
--enable-cscope --enable-rubyinterp \
--with-compiledby="Bjorn Winckler <bjorn.winckler@gmail.com>" > /dev/null
echo ' cleaning...'
make clean > /dev/null
echo ' calling make...'
make > /dev/null
echo ' done'
# Build MacVim.app
echo 'BUILDING MacVim.app'
cd MacVim
echo ' cleaning...'
xcodebuild -configuration Universal clean > /dev/null
echo ' calling xcodebuild...'
xcodebuild -configuration Universal > /dev/null
echo ' done'
# Create archive of build/Universal/MacVim.app
echo 'CREATING SNAPSHOT ARCHIVE'
echo ' copying MacVim.app and supporting files...'
mkdir $DEST
cp -pR build/Universal/MacVim.app $DEST/
cp -p mvim $DEST/
cp -p README-snapshot.txt $DEST/
echo ' creating archive....'
cd $DEST && cd ..
tar cjf MacVim-snapshot-$BUILDNUM.tbz MacVim-snapshot-$BUILDNUM
echo ' done'
echo 'ALL DONE'
echo 'Now update the Appcast, commit and tag, then post on vim_mac.'
# Update app-cast
# Commit & tag
# git-commit -a -m "$BUILDNUM"
# git-tag -a -F tagfile $BUILDNUM
# Post on vim_mac