summaryrefslogtreecommitdiff
path: root/src/emacs
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-06-14 08:59:25 -0700
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-06-14 08:59:25 -0700
commit3376b6420d3b6cc965890e46e7bbd06fbc9fd037 (patch)
tree67b59ce0f9ba016db62067a081c0535d064d2a3f /src/emacs
parentd533343af750dcfda2321f33953b66396e767f10 (diff)
layout reorg
Diffstat (limited to 'src/emacs')
m---------src/emacs/emacs-source0
-rwxr-xr-xsrc/emacs/setup.sh28
2 files changed, 0 insertions, 28 deletions
diff --git a/src/emacs/emacs-source b/src/emacs/emacs-source
deleted file mode 160000
-Subproject ee9b2db1cf036d6f511d7e6eea0189073076e7c
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