Skip to content

Instantly share code, notes, and snippets.

@j1n3l0
Last active November 17, 2016 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j1n3l0/dc15c41788c868f62ac07e48b6d491aa to your computer and use it in GitHub Desktop.
Save j1n3l0/dc15c41788c868f62ac07e48b6d491aa to your computer and use it in GitHub Desktop.
#!/bin/bash
set -euxo pipefail
# install deps ...
apt-get update
apt-get install -y build-essential && \
apt-get build-dep -y emacs24
# install emacs25 ...
wget -q - "http://ftp.gnu.org/gnu/emacs/emacs-25.1.tar.gz" && \
tar -xf emacs-25.1.tar.gz && \
cd emacs-25.1/ && \
./autogen.sh && \
./configure --with-x=no --without-makeinfo && \
make && \
make install && \
cd ../ && \
rm -rf emacs-25.1*
# TODO: does not quite work yet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment