-
-
Save markbil/733e3ec9bb5e8345ae3cffb4d4c139e3 to your computer and use it in GitHub Desktop.
Compile and install emacs 27.1 for Ubuntu
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 | |
sudo apt install build-essential texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk2.0-dev libncurses-dev libgnutls28-dev | |
wget http://ftp.gnu.org/gnu/emacs/emacs-27.1.tar.gz | |
tar xvzf emacs-27.1.tar.gz | |
cd emacs-27.1 | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment