mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-18 12:54:25 +01:00
Updating arduino and dist.sh scripts for Arduino instead of Processing.
This commit is contained in:
parent
e5e6639cc9
commit
8417a01218
@ -2,68 +2,33 @@
|
||||
|
||||
REVISION=`head -c 4 ../../todo.txt`
|
||||
|
||||
rm -rf work
|
||||
|
||||
./make.sh
|
||||
|
||||
echo Creating linux distribution for revision $REVISION...
|
||||
|
||||
rm -rf work/classes
|
||||
|
||||
# remove any old boogers
|
||||
rm -rf processing
|
||||
rm -rf processing-*
|
||||
rm -rf arduino
|
||||
rm -rf arduino-*
|
||||
|
||||
# use 'shared' files as starting point
|
||||
cp -r ../shared processing
|
||||
|
||||
# add the libraries folder with source
|
||||
cp -r ../../net processing/libraries/
|
||||
cp -r ../../opengl processing/libraries/
|
||||
cp -r ../../serial processing/libraries/
|
||||
|
||||
# new style examples thing ala reas
|
||||
cd processing
|
||||
unzip -q examples.zip
|
||||
rm examples.zip
|
||||
cd ..
|
||||
|
||||
cd processing
|
||||
unzip -q reference.zip
|
||||
rm reference.zip
|
||||
cd ..
|
||||
|
||||
# add java (jre) files
|
||||
#tar --extract --verbose --file=jre.tgz --ungzip --directory=processing
|
||||
tar --extract --file=jre.tgz --ungzip --directory=processing
|
||||
|
||||
# directories used by the app
|
||||
#mkdir processing/lib/build
|
||||
|
||||
# grab pde.jar and export from the working dir
|
||||
cp work/lib/pde.jar processing/lib/
|
||||
cp work/lib/core.jar processing/lib/
|
||||
|
||||
# get platform-specific goodies from the dist dir
|
||||
install -m 755 dist/processing processing/processing
|
||||
cp dist/jikes processing/
|
||||
chmod +x processing/jikes
|
||||
|
||||
# make sure notes.txt is unix LFs
|
||||
# the 2> is because the app is a little chatty
|
||||
dos2unix processing/revisions.txt 2> /dev/null
|
||||
dos2unix processing/lib/preferences.txt 2> /dev/null
|
||||
mv work arduino
|
||||
|
||||
# remove boogers
|
||||
find processing -name "*~" -exec rm -f {} ';'
|
||||
find processing -name ".DS_Store" -exec rm -f {} ';'
|
||||
find processing -name "._*" -exec rm -f {} ';'
|
||||
find processing -name "Thumbs.db" -exec rm -f {} ';'
|
||||
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 {} ';'
|
||||
|
||||
# clean out the cvs entries
|
||||
find processing -name "CVS" -exec rm -rf {} ';' 2> /dev/null
|
||||
#find processing -name "CVS" -exec echo {} ';'
|
||||
find arduino -name ".svn" -exec rm -rf {} ';' 2> /dev/null
|
||||
|
||||
# zip it all up for release
|
||||
echo Creating tarball and finishing...
|
||||
P5=processing-$REVISION
|
||||
mv processing $P5
|
||||
P5=arduino-$REVISION
|
||||
mv arduino $P5
|
||||
|
||||
tar cfz $P5.tgz $P5
|
||||
# nah, keep the new directory around
|
||||
|
2
build/linux/dist/arduino
vendored
2
build/linux/dist/arduino
vendored
@ -6,7 +6,7 @@ export CLASSPATH
|
||||
# put the directory where this file lives in the front of the path, because
|
||||
# that directory also contains jikes, which we will need at runtime.
|
||||
#
|
||||
PATH=`pwd`/`dirname $0`/tools:${PATH}
|
||||
PATH=`pwd`/tools:${PATH}
|
||||
export PATH
|
||||
|
||||
# put the directory with the native RXTX libs in the library path
|
||||
|
Loading…
x
Reference in New Issue
Block a user