From 6d8430971dada74478a0cd2c9eca2272a105b744 Mon Sep 17 00:00:00 2001 From: Thomas Ulmer Date: Sun, 1 Mar 2026 11:35:48 -0800 Subject: move emacs build out of tree --- emacs-source/emacs-source | 1 + emacs-source/setup.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 160000 emacs-source/emacs-source create mode 100755 emacs-source/setup.sh (limited to 'emacs-source') diff --git a/emacs-source/emacs-source b/emacs-source/emacs-source new file mode 160000 index 0000000..3ea1010 --- /dev/null +++ b/emacs-source/emacs-source @@ -0,0 +1 @@ +Subproject commit 3ea1010a6b0a63e90896133deaba189f13d47436 diff --git a/emacs-source/setup.sh b/emacs-source/setup.sh new file mode 100755 index 0000000..e7ca491 --- /dev/null +++ b/emacs-source/setup.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +set -e + +EMACSFULL="--with-x-toolkit=gtk3 --disable-build-details --with-cairo \ + --with-harfbuzz --with-libsystemd=no --with-modules \ + --with-tree-sitter" + +EMACSMIN="--without-all \ + --with-x-toolkit=no --without-xwidgets --without-x --without-ns --disable-ns-self-contained \ + --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no \ + --without-internationalization --without-tree-sitter --without-mailutils" + +EMACSALWAYS="--with-gnutls --with-file-notification=yes --with-native-compilation=yes --with-zlib=yes" + + +if [[ "$(read -e -p 'Build minimal emacs? [y/N]> '; echo $REPLY)" == [Yy]* ]]; then + EMACSOPT="${EMACSMIN} ${EMACSALWAYS}" +else + EMACSOPT="${EMACSFULL} ${EMACSALWAYS}" +fi +cd emacs-source +./autogen.sh +./configure --prefix="${HOME}/.local" \ + ${EMACSOPT} \ + CFLAGS='-O2 -pipe' +make +make install -- cgit v1.2.3