diff options
author | Cem Keylan <cem@ckyln.com> | 2020-08-04 11:48:13 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-08-04 11:48:13 +0300 |
commit | e67e7d1d48224a9dee400f82555154a216d896fa (patch) | |
tree | fb2b7116a7d643eb71c1c043ee767337eca573f7 /testing/emacs/build | |
parent | 452372b3f917edeea71d250b228d2cf673bb4f70 (diff) | |
download | repository-e67e7d1d48224a9dee400f82555154a216d896fa.tar.gz |
emacs: add new package at 27.1-rc1 [TESTING]
Diffstat (limited to 'testing/emacs/build')
-rwxr-xr-x | testing/emacs/build | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/emacs/build b/testing/emacs/build new file mode 100755 index 00000000..7428c187 --- /dev/null +++ b/testing/emacs/build @@ -0,0 +1,31 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --with-modules \ + --with-xft \ + --with-x-toolkit=athena \ + --without-toolkit-scroll-bars \ + --without-dbus \ + --without-gconf \ + --without-gsettings \ + --with-xpm=no \ + --with-gnutls=yes + +mkdir -p "$1/usr/share/emacs/site-lisp" +cat << EOF > "$1/usr/share/emacs/site-lisp/site-start.el" +;; GnuTLS configuration +;; In Carbs, CA certificates are installed to /etc/certificates +(with-eval-after-load 'gnutls + (setq gnutls-verify-error t + gnutls-min-prime-bits 2048 + gnutls-trustfiles '("/etc/certificates/cert.pem") +)) + +(setq-default shr-blocked-images ".*\.svg$") +EOF + +make +make DESTDIR="$1" install + +rm -rf "$1/usr/lib/systemd" |