mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-07 15:37:14 +02:00
Remove make-snapshot.sh and README-snapshot.sh
This commit is contained in:
@@ -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.
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user