Last active
January 6, 2021 12:49
-
-
Save nodupe/22bdb1151692fa8db21c161108e7b1d2 to your computer and use it in GitHub Desktop.
Compile and install latest stable emacs (27) on Pop OS 20.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 | |
git clone -b emacs-27 --depth=1 git://git.savannah.gnu.org/emacs.git | |
cd emacs | |
sudo apt build-dep emacs | |
./autogen.sh | |
./autogen.sh git | |
./configure | |
make && sudo make install | |
make clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To avoid adding PPAs to the system I managed to have it installed via source code. This is vanilla emacs. Any configuration options for compilation time must be added on the script itself.