Last active
April 5, 2018 22:21
-
-
Save arrawatia/8c2e43d1a308d03b35e6 to your computer and use it in GitHub Desktop.
emacs 24.4 on ubuntu 10.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks !