diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-01 16:45:28 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-01 16:45:28 -0800 |
| commit | 66e66f76d8f6d938ca438be761f8187295b5e0b7 (patch) | |
| tree | 624c12d5b9900c0139455c178cb9a4bd5b8ddfbd /src/emacs/setup.sh | |
| parent | 4d7080e0a916791b1aa15b8447b152d7f5e910aa (diff) | |
prune tree and migrate setup
Diffstat (limited to 'src/emacs/setup.sh')
| -rwxr-xr-x | src/emacs/setup.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/emacs/setup.sh b/src/emacs/setup.sh deleted file mode 100755 index e7ca491..0000000 --- a/src/emacs/setup.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/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 |
