Skip to content

Instantly share code, notes, and snippets.

View nodupe's full-sized avatar

Vinicius nodupe

  • Living in Europe
View GitHub Profile
@nodupe
nodupe / gist:22bdb1151692fa8db21c161108e7b1d2
Last active January 6, 2021 12:49
Compile and install latest stable emacs (27) on Pop OS 20.04
#!/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