blob: 8e1ca8420a0c56073465ab318218911ca6dd29ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-modules \
--with-x-toolkit=gtk3 \
--with-pgtk \
--without-rsvg \
--without-dbus \
--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 V=1 -j1
make DESTDIR="$1" install
rm -rf "$1/usr/lib/systemd"
|