Skip to content

Instantly share code, notes, and snippets.

@KeithPiTsui
Forked from Yevgnen/emacs26.sh
Last active April 3, 2020 05:02
Show Gist options
  • Save KeithPiTsui/c6ee8a15235a0f64e93010a6dc95bb76 to your computer and use it in GitHub Desktop.
Save KeithPiTsui/c6ee8a15235a0f64e93010a6dc95bb76 to your computer and use it in GitHub Desktop.
Compile Emacs 26 on Ubuntu 18.04
mkdir emacs
cd emacs
git init
git remote add origin https://github.com/emacs-mirror/emacs.git
git fetch --depth 1 origin emacs-26
git reset --hard FETCH_HEAD
sudo apt install autoconf make gcc texinfo libgtk-3-dev libxpm-dev libjpeg-dev libgif-dev libtiff5-dev libgnutls28-dev libncurses5-dev
./autogen.sh
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment