From 4bb3480f013b715db32d1709180c81f9f88b5081 Mon Sep 17 00:00:00 2001 From: go15 <go15@inf.ufpr.br> Date: Fri, 4 Dec 2015 09:37:16 -0200 Subject: [PATCH] =?UTF-8?q?Adicionei=20a=20op=C3=A7=C3=A3o=20para=20o=20ar?= =?UTF-8?q?ch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian-based/Makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 debian-based/Makefile diff --git a/debian-based/Makefile b/debian-based/Makefile new file mode 100644 index 0000000..c83e6d8 --- /dev/null +++ b/debian-based/Makefile @@ -0,0 +1,35 @@ +all: + +fresh-install: update install + +update: + sudo apt-get update + sudo apt-get upgrade -y + +install: ssh php mysql php-mysql ruby nodejs git editors openjdk xchmn latex + +ssh: + sudo apt-get install -y openssh-client openssh-server +php: + sudo apt-get install -y php5 +mysql: + sudo apt-get install -y mysql-client mysql-server +php-mysql: php mysql + +ruby: + sudo apt-get install -y ruby2.0 +nodejs: + sudo apt-get install -y nodejs npm +git: + sudo apt-get install -y git +editors: + sudo apt-get install -y vim gedit +openjdk: + sudo apt-get install -y openjdk-7-jre openjdk-7-jdk default-jdk default-jre +flash: + sudo apt-get install -y pepperflashplugin-nonfree +xchm: + sudo apt-get install -y xchm +latex: + sudo apt-get install -y texlive-full kile + -- GitLab