summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik.ramaekers@protonmail.com>2020-02-19 17:35:00 +0100
committerAldrik Ramaekers <aldrik.ramaekers@protonmail.com>2020-02-19 17:35:00 +0100
commitdffb38068b91112f839298b52ff0fc365592128d (patch)
treebf26a72de5fad6cddf75b5b2c3e52d526f1f0182 /install.sh
parent0cce7880ef4c97bc07118e6de9e7f9a1f5526ed4 (diff)
work
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh69
1 files changed, 0 insertions, 69 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100644
index 07f961d..0000000
--- a/install.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-
-########################################################################
-########################################################################
-if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
-
-if [ "$EUID" -ne 0 ]
- then echo "Please run this script as root."
- exit
-fi
-
-echo "Checking if dependencies are installed.."
-if [ $(dpkg-query -W -f='${Status}' libglu1-mesa-dev 2>/dev/null | grep -c "ok installed") -eq 0 ];
-then
- apt-get install libglu1-mesa-dev;
-fi
-
-
-if [ $(dpkg-query -W -f='${Status}' libgl1-mesa-dev 2>/dev/null | grep -c "ok installed") -eq 0 ];
-then
- apt-get install libgl1-mesa-dev;
-fi
-echo "Dependencies are installed"
-
-echo "Compiling program.."
-cd src
-
-ld -r -b binary -o ../bin/data.o ../data/imgs/en.png ../data/imgs/nl.png ../data/imgs/logo_64.png ../data/fonts/mono.ttf ../data/translations/en-English.mo ../data/translations/nl-Dutch.mo ../data/imgs/list.png ../data/imgs/delete.png ../data/imgs/exclaim.png ../data/imgs/add.png ../data/imgs/set.png
-
-gcc -Wall -O3 -m64 -Wno-unused-label -Wno-unused-variable mo_edit.c ../bin/data.o -o ../bin/mo-edit -lX11 -lGL -lGLU -lXrandr -lm -lpthread -ldl -lcurl
-
-rm -f ../bin/data.o
-
-echo "Done compiling program"
-
-cp --remove-destination ../bin/mo-edit /usr/local/bin/mo-edit
-
-cd ../
-
-########################################################################
-########################################################################
-elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
-
-windres misc/icon.rc -O coff -o misc/icon.res
-
-echo "Compiling program.."
-cd src
-
-ld -r -b binary -o ../bin/data.o ../data/imgs/en.png ../data/imgs/nl.png ../data/imgs/logo_64.png ../data/fonts/mono.ttf ../data/translations/en-English.mo ../data/translations/nl-Dutch.mo ../data/imgs/list.png ../data/imgs/delete.png ../data/imgs/exclaim.png ../data/imgs/add.png ../data/imgs/set.png
-
-x86_64-w64-mingw32-gcc -Wall -m64 -O3 -Wno-unused-label -Wno-unused-variable mo_edit.c ../bin/data.o -o ../bin/mo-edit.exe ../misc/icon.res -lopengl32 -lkernel32 -lglu32 -lgdi32 -lcomdlg32 -lgdiplus -lole32 -lshlwapi -lwininet
-
-rm -f ../bin/data.o
-
-echo "Done compiling program, mo-edit.exe is located in 'C:\Manually installed'"
-
-cp --remove-destination "../bin/mo-edit.exe" "C:\Manually installed programs\mo-edit.exe"
-
-cd ../
-
-########################################################################
-########################################################################
-elif [ "$(uname)" == "Darwin" ]; then
- echo "OSX Platform not supported"
-########################################################################
-########################################################################
-elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
- echo "32bit Windows versions not supported"
-fi \ No newline at end of file