forked from zipsterific/Ultimate-Linux-Mint-19.1-Cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-brackets-v1.sh
executable file
·33 lines (24 loc) · 1.3 KB
/
install-brackets-v1.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
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
# dependencies
sudo apt install -y libgcrypt11 libcurl3
wget http://ftp.de.debian.org/debian/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-5+deb7u4_amd64.deb
wget https://github.com/adobe/brackets/releases/download/release-1.8/Brackets.Release.1.8.64-bit.deb
sudo dpkg -i libgcrypt11_1.5.0-5+deb7u4_amd64.deb
sudo dpkg -i Brackets.Release.1.8.64-bit.deb
sudo apt-get -f install -y
rm Brackets.Release.1.8.64-bit.deb
rm libgcrypt11_1.5.0-5+deb7u4_amd64.deb
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"