diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-01 11:35:48 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-01 11:35:48 -0800 |
| commit | 6d8430971dada74478a0cd2c9eca2272a105b744 (patch) | |
| tree | 3688aa99212c959fde9b7cd838b870110c482f80 /tree | |
| parent | 89262cf0fcdbd57241c4f24ebb6dde0af9f92279 (diff) | |
move emacs build out of tree
Diffstat (limited to 'tree')
| m--------- | tree/src/emacs/emacs-source | 0 | ||||
| -rwxr-xr-x | tree/src/emacs/setup.sh | 28 |
2 files changed, 0 insertions, 28 deletions
diff --git a/tree/src/emacs/emacs-source b/tree/src/emacs/emacs-source deleted file mode 160000 -Subproject 3ea1010a6b0a63e90896133deaba189f13d4743 diff --git a/tree/src/emacs/setup.sh b/tree/src/emacs/setup.sh deleted file mode 100755 index e7ca491..0000000 --- a/tree/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 |
