Skip to content

Instantly share code, notes, and snippets.

@ivan-loh
Last active March 31, 2024 05:06
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ivan-loh/9eab9770c937f8a0a555252fa9c65c8d to your computer and use it in GitHub Desktop.
Save ivan-loh/9eab9770c937f8a0a555252fa9c65c8d to your computer and use it in GitHub Desktop.
Compile and install emacs 28.1 for Ubuntu
#!/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-29.3.tar.gz
tar xvzf emacs-29.3.tar.gz
cd emacs-29.3
./configure --with-mailutils
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment