Added server goodies

This commit is contained in:
Felipe M 2016-12-19 14:44:02 +01:00
parent 002f3dd67f
commit 993160a64a
4 changed files with 89 additions and 0 deletions

20
server/emacs.sh Normal file
View file

@ -0,0 +1,20 @@
#!/bin/bash
# Emacs install script used into scaleway.c1 servers due to ARM arch
EMACS_VERSION="25.1"
# Asume root
cd
# Install dependencies
yum install -y ncurses.devel
# Download package
curl -O http://ftp.rediris.es/mirror/GNU/gnu/emacs/emacs-$EMACS_VERSION.tar.xz
# Configure, Make, and Install
./configure
make
make install