Created
April 14, 2016 00:14
-
-
Save aizquier/3ec993344f2c615febda64479e67bacc to your computer and use it in GitHub Desktop.
Build emacs 24.5 in linux Mint
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
sudo apt-get remove \ | |
emacs emacs24 emacs24-bin-common \ | |
emacs24-common emacs24-common-non-dfsg emacsen-common | |
wget -c http://gnu.mirror.vexxhost.com/emacs/emacs-24.5.tar.xz | |
tar vxf emacs-24.5.tar.xz | |
cd emacs-24.5/ | |
sudo apt-get install libxml2-dev libgtk-3-dev \ | |
libtiff5-dev libgif-dev libXpm-dev libncurses-dev | |
./configure | |
make | |
sudo make install | |
cd /usr/bin | |
sudo ln -s /usr/local/bin/emacs emacs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expanded from the example at https://gist.github.com/dcampos/1fd6449fce41421e6157 . libgif-dev libXpm-dev libncurses-dev were required as well.