-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure
executable file
·33 lines (27 loc) · 941 Bytes
/
configure
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
#!/bin/sh
PURPLE='\033[0;36m'
END='\033[0m'
# install dependencies
echo "\n${PURPLE}[ ] Installing Emojicode dependencies\n${END}"
sudo apt-get update -qq \
&& sudo apt-get -y --no-install-recommends install \
build-essential \
ca-certificates \
g \
rsync \
wget \
libncurses5
# install Emojicode-1.0-beta.2-Linux-x86_64
echo "\n${PURPLE}[ ] Installing Emojicode-1.0-beta.2-Linux-x86_64\n${END}"
wget https://github.com/emojicode/emojicode/releases/download/v1.0-beta.2/Emojicode-1.0-beta.2-Linux-x86_64.tar.gz -O emojicode.tar.gz \
&& tar -xzf emojicode.tar.gz \
&& rm emojicode.tar.gz \
&& cd Emojicode-1.0-beta.2-Linux-x86_64 \
&& echo y | sudo ./install.sh || true \
&& cd - \
&& rm -r Emojicode-1.0-beta.2-Linux-x86_64
# install additional dependencies
# echo "\n${PURPLE}[ ] Installing additional dependencies\n${END}"
echo "\n${PURPLE}[!] Successfully configured!\n${END}"
unset PURPLE
unset END