forked from TricksterGuy/nin10kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·35 lines (31 loc) · 915 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
# Stop on any error
set -e
if [ "$(id -u)" != "0" ]; then
echo "Sorry, you are not root. Use the command sudo ./setup.sh"
exit 1
fi
if ! type apt-get >/dev/null 2>&1; then
echo >&2 "APT required, perhaps you don't have a Debian variant installed?"
exit 2
fi
echo >&2 "Installing package build-essential"
apt-get install -y build-essential > /dev/null
echo >&2 "Installing g++"
apt-get install -y g++ > /dev/null
echo >&2 "Installing wxWidgets 3.0"
apt-get install -y libwxgtk3.0-dev > /dev/null
echo >&2 "Installing Magick++"
apt-get install -y libmagick++-dev libmagickcore-dev libmagickwand-dev > /dev/null
echo >&2 "Installing CMake"
apt-get install -y cmake > /dev/null
echo >&2 "Creating build directory"
mkdir -p build
cd build
echo >&2 "Generating Makefile via cmake"
cmake ..
echo >&2 "Building program"
make
echo >&2 "Installing program"
make install
echo >&2 "Done, have a nice day!"