Add Processing IDE app to close #290
parent
7746acdccc
commit
f581a00a5e
@ -0,0 +1 @@
|
||||
added by pi-dev500
|
@ -0,0 +1,6 @@
|
||||
Simple Java IDE
|
||||
Processing is an IDE + Programming Language used for Visual Arts.
|
||||
It is an Open-Source and Free Software (FOSS) which is built from Java and is used to create graphics.
|
||||
|
||||
To run: Menu -> Programming -> Processing IDE
|
||||
To run in a terminal: ~/.local/share/processing-3.5.3/processing
|
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit
|
||||
}
|
||||
|
||||
cd ~/.local/share/
|
||||
wget http://download.processing.org/processing-3.5.3-linux-armv6hf.tgz || error "failed to download"
|
||||
tar -xf processing-3.5.3-linux-armv6hf.tgz || error "failed to extract"
|
||||
rm processing-3.5.3-linux-armv6hf.tgz
|
||||
sudo ~/.local/share/processing*/install.sh
|
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit
|
||||
}
|
||||
|
||||
cd ~/.local/share/
|
||||
wget https://github.com/processing/processing/releases/download/processing-0270-3.5.4/processing-3.5.4-linux64.tgz || error "failed to download"
|
||||
tar -xf processing*.tgz || error "failed to extract"
|
||||
rm processing*.tgz
|
||||
sudo ~/.local/share/processing*/install.sh
|
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit
|
||||
}
|
||||
|
||||
cd ~/.local/share
|
||||
|
||||
sudo ~/.local/share/processing*/uninstall.sh || error "failed to uninstall"
|
||||
rm -rf processing* || error "Failed to remove install directory!"
|
||||
cd ~/
|
@ -0,0 +1 @@
|
||||
processing.org
|
Loading…
Reference in New Issue