mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
114 lines
2.7 KiB
Bash
Executable File
114 lines
2.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
REVISION=`head -c 4 ../../todo.txt`
|
|
|
|
# check to see if the version number in the app is correct
|
|
# so that mikkel doesn't kick my ass
|
|
VERSIONED=`cat ../../app/Base.java | grep $REVISION`
|
|
if [ -z "$VERSIONED" ]
|
|
then
|
|
echo Fix the revision number in Base.java
|
|
exit
|
|
fi
|
|
|
|
./make.sh
|
|
|
|
echo Creating P5 distribution for revision $REVISION...
|
|
echo
|
|
|
|
# remove any old boogers
|
|
rm -rf arduino
|
|
rm -rf arduino-*
|
|
|
|
# use 'shared' files as starting point
|
|
cp -r ../shared arduino
|
|
cp -r work/lib/targets arduino/lib
|
|
|
|
# new style examples thing ala reas
|
|
cd arduino
|
|
mkdir examples
|
|
unzip -d examples -q dist/examples.zip
|
|
rm dist/examples.zip
|
|
rm -rf dist
|
|
cd ..
|
|
|
|
# add java (jre) files
|
|
unzip -q -d arduino jre.zip
|
|
|
|
# copy tools from work/
|
|
cp -r work/tools arduino
|
|
|
|
# directories used by the app
|
|
#mkdir arduino/lib/build
|
|
|
|
# grab pde.jar and export from the working dir
|
|
cp work/lib/pde.jar arduino/lib/
|
|
cp work/java/lib/rt.jar arduino/lib/
|
|
#cp work/lib/core.jar arduino/lib/
|
|
#cp -r work/lib/export arduino/lib/
|
|
#rm -rf arduino/lib/export/CVS
|
|
|
|
# get jikes and depedencies
|
|
#gunzip < dist/jikes.gz > arduino/jikes.exe
|
|
cp dist/jikes.exe arduino/
|
|
chmod +x arduino/jikes.exe
|
|
|
|
cp dist/ICE_JNIRegistry.dll arduino/
|
|
chmod +x arduino/ICE_JNIRegistry.dll
|
|
cp work/rxtxSerial.dll arduino/
|
|
chmod +x arduino/rxtxSerial.dll
|
|
cp work/*.dll arduino
|
|
chmod +x arduino/*.dll
|
|
|
|
# get platform-specific goodies from the dist dir
|
|
cp launcher/arduino.exe arduino/
|
|
#cp dist/run.bat arduino/
|
|
|
|
# convert notes.txt to windows LFs
|
|
# the 2> is because the app is a little chatty
|
|
unix2dos arduino/revisions.txt 2> /dev/null
|
|
unix2dos arduino/lib/preferences.txt 2> /dev/null
|
|
unix2dos arduino/lib/keywords.txt 2> /dev/null
|
|
rm -f arduino/*.bak
|
|
rm -f arduino/lib/*.bak
|
|
|
|
# remove boogers
|
|
find arduino -name "*~" -exec rm -f {} ';'
|
|
find arduino -name ".DS_Store" -exec rm -f {} ';'
|
|
find arduino -name "._*" -exec rm -f {} ';'
|
|
find arduino -name "Thumbs.db" -exec rm -f {} ';'
|
|
|
|
# chmod +x the crew
|
|
find arduino -name "*.dll" -exec chmod +x {} ';'
|
|
find arduino -name "*.exe" -exec chmod +x {} ';'
|
|
find arduino -name "*.html" -exec chmod +x {} ';'
|
|
|
|
# clean out the svn entries
|
|
find arduino -name ".svn" -exec rm -rf {} ';' 2> /dev/null
|
|
|
|
# zip it all up for release
|
|
echo Packaging standard release...
|
|
echo
|
|
P5=arduino-$REVISION
|
|
mv arduino $P5
|
|
zip -rq $P5.zip $P5
|
|
# nah, keep the new directory around
|
|
#rm -rf $P5
|
|
|
|
# zip up another for experts
|
|
echo Packaging expert release...
|
|
echo
|
|
|
|
cp -a $P5 $P5-expert
|
|
|
|
# can't use the run.bat that's tied to a local jre
|
|
rm $P5-expert/run.bat
|
|
cp dist/run-expert.bat $P5-expert/
|
|
|
|
# remove enormous java runtime
|
|
rm -rf $P5-expert/java
|
|
zip -rq $P5-expert.zip $P5-expert
|
|
|
|
echo Done.
|
|
|