blob: 632a8666ddf60368bdbc5fef0635184091cf402d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh -e
export DESTDIR="$1"
# The new version requires openssl TLS1.3, which libressl hasn't fully
# implemented yet. We now need gnutls, sadly.
meson \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
-Dlibproxy=disabled \
-Dgnutls=enabled \
. output
ninja -C output
ninja -C output install
|