Added server goodies
This commit is contained in:
parent
002f3dd67f
commit
993160a64a
4 changed files with 89 additions and 0 deletions
20
server/emacs.sh
Normal file
20
server/emacs.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue