Skip to content

Instantly share code, notes, and snippets.

@arrawatia
Last active April 5, 2018 22:21
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save arrawatia/8c2e43d1a308d03b35e6 to your computer and use it in GitHub Desktop.
emacs 24.4 on ubuntu 10.04
#!/bin/bash
cd /tmp && \
mkdir emacs-src && cd emacs-src && \
wget http://mirror.team-cymru.org/gnu/emacs/emacs-24.4.tar.gz && \
tar xvf emacs-24.4.tar.gz && \
sudo apt-get -yy install build-essential && \
sudo apt-get -yy build-dep emacs24 && \
cd emacs-24.4 && \
./configure && \
make && \
sudo make install
@EthanTang0115
Copy link

Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment