diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-14 09:04:12 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-14 09:04:12 -0700 |
| commit | f0fe9658b61133885df2a4c6af264f6058dc2545 (patch) | |
| tree | fd0dd2092b94be9abfef97117b89b54e1c433b4e | |
| parent | e2946c6a70c4aa53ce110c61e17062043a9afbd5 (diff) | |
remove emacs source
| -rw-r--r-- | .gitmodules | 3 | ||||
| m--------- | emacs-source/emacs-source | 0 | ||||
| -rwxr-xr-x | emacs-source/setup.sh | 28 |
3 files changed, 0 insertions, 31 deletions
diff --git a/.gitmodules b/.gitmodules index 6669c5b..e69de29 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "emacs-source/emacs-source"] - path = emacs-source/emacs-source - url = git://git.savannah.gnu.org/emacs.git diff --git a/emacs-source/emacs-source b/emacs-source/emacs-source deleted file mode 160000 -Subproject 3ea1010a6b0a63e90896133deaba189f13d4743 diff --git a/emacs-source/setup.sh b/emacs-source/setup.sh deleted file mode 100755 index e7ca491..0000000 --- a/emacs-source/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 |
