-
-
Save peterwvj/dbb7b8ad0523bef597764ff1673cde96 to your computer and use it in GitHub Desktop.
Build emacs27 on Ubuntu 18.04
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
git clone --depth=1 https://github.com/emacs-mirror/emacs.git | |
cd emacs/ | |
sudo apt install -y autoconf make gcc texinfo libgtk-3-dev libxpm-dev \ | |
libjpeg-dev libgif-dev libtiff5-dev libgnutls28-dev libncurses5-dev \ | |
libjansson-dev libharfbuzz-dev libharfbuzz-bin | |
./autogen.sh | |
./configure --with-json --with-modules --with-harfbuzz --with-compress-install \ | |
--with-threads --with-included-regex --with-zlib --without-sound \ | |
--without-xpm --without-jpeg --without-tiff --without-gif --without-png \ | |
--without-rsvg --without-imagemagick --without-toolkit-scroll-bars \ | |
--without-gpm --without-dbus --without-makeinfo --without-pop \ | |
--without-mailutils --without-gsettings --without-pop --without-mailutils | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment