blob: d880f48fd2e588b5c022ce09f632295c8e5e7bd4 (
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
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-modules \
--without-all \
--without-x \
--with-x-toolkit=no \
--with-x=no \
--with-gnutls=yes \
--with-xml2=yes
mkdir -p "$1/usr/share/emacs/site-lisp"
cat << EOF > "$1/usr/share/emacs/site-lisp/site-start.el"
;; Better security defaults
(with-eval-after-load 'gnutls
(setq
gnutls-verify-error t
gnutls-min-prime-bits 2048
gnutls-trustfiles '("/etc/ssl/cert.pem")))
EOF
make
make DESTDIR="$1" install
rm -rf "$1/usr/lib/systemd"
|