Download and build Emacs 26 - Debian and Ubuntu
| # echo "Emacs (GIT)" | |
| # Check if ~/Temps exist | |
| if [ ! -d "$HOME/Temps/emacs" ]; then | |
| # Cloning emacs from gnu repo | |
| git clone git://git.sv.gnu.org/emacs.git ~/Temps/emacs/ | |
| fi | |
| cd ~/Temps/emacs/ || exit | |
| # Emacs install | |
| git checkout emacs-26 | |
| ./autogen.sh | |
| ./configure --with-dbus --with-xft --with-gconf --with-libsystemd --with-x-toolkit=gtk3 --with-modules | |
| # # # --without-makeinfo --with-cairo --with-xwidgets --with-mailutils --with-pop | |
| make -j7 bootstrap | |
| sudo make -j7 install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment