diff --git a/apps/Processing IDE/credits b/apps/Processing IDE/credits new file mode 100644 index 0000000..2c4968a --- /dev/null +++ b/apps/Processing IDE/credits @@ -0,0 +1 @@ +added by pi-dev500 \ No newline at end of file diff --git a/apps/Processing IDE/description b/apps/Processing IDE/description new file mode 100644 index 0000000..09200bd --- /dev/null +++ b/apps/Processing IDE/description @@ -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 diff --git a/apps/Processing IDE/icon-24.png b/apps/Processing IDE/icon-24.png new file mode 100644 index 0000000..1fdbb39 Binary files /dev/null and b/apps/Processing IDE/icon-24.png differ diff --git a/apps/Processing IDE/icon-64.png b/apps/Processing IDE/icon-64.png new file mode 100644 index 0000000..eda4707 Binary files /dev/null and b/apps/Processing IDE/icon-64.png differ diff --git a/apps/Processing IDE/install-32 b/apps/Processing IDE/install-32 new file mode 100755 index 0000000..002b290 --- /dev/null +++ b/apps/Processing IDE/install-32 @@ -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 diff --git a/apps/Processing IDE/install-64 b/apps/Processing IDE/install-64 new file mode 100755 index 0000000..310ffe2 --- /dev/null +++ b/apps/Processing IDE/install-64 @@ -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 diff --git a/apps/Processing IDE/uninstall b/apps/Processing IDE/uninstall new file mode 100755 index 0000000..59de493 --- /dev/null +++ b/apps/Processing IDE/uninstall @@ -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 ~/ \ No newline at end of file diff --git a/apps/Processing IDE/website b/apps/Processing IDE/website new file mode 100644 index 0000000..443b9fe --- /dev/null +++ b/apps/Processing IDE/website @@ -0,0 +1 @@ +processing.org