Skip to content

Instantly share code, notes, and snippets.

@Yevgnen
Forked from kissge/emacs26.sh
Created June 3, 2018 11:09
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Yevgnen/316e7e69fc224d0c2722222795944c84 to your computer and use it in GitHub Desktop.
Save Yevgnen/316e7e69fc224d0c2722222795944c84 to your computer and use it in GitHub Desktop.
Compile Emacs 26 on Ubuntu 16.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 libgnutls-dev libncurses5-dev
./autogen.sh
./configure
make
sudo make install
@easbarba
Copy link

easbarba commented Dec 17, 2019

apt build-dep emacs
git reset --> make bootstrap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment