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
| # Setting up Emacs in our source directory | |
| mkdir -p ~/src && cd ~/src | |
| git clone --depth 1 --branch emacs-31 git://git.savannah.gnu.org/emacs.git | |
| cd emacs | |
| git checkout emacs-31 | |
| # Enable development libraries and update apt cache | |
| # for Ubuntu >= 24.04 | |
| sudo sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources && apt update |