diff options
author | Cem Keylan <cem@ckyln.com> | 2021-03-23 20:25:27 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-03-23 20:25:27 +0300 |
commit | 15c3293ac45c25cedf4270ed2b6552be678d9223 (patch) | |
tree | 465d9c22c9b518c352bba8629ea594b6342d3d9b /extra/gnutls/build | |
parent | c72106d09fe4ccf6f33c41ed55e97792312082a6 (diff) | |
download | repository-15c3293ac45c25cedf4270ed2b6552be678d9223.tar.gz |
gnutls: move to extra
Diffstat (limited to 'extra/gnutls/build')
-rwxr-xr-x | extra/gnutls/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/gnutls/build b/extra/gnutls/build new file mode 100755 index 00000000..4958284a --- /dev/null +++ b/extra/gnutls/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --disable-nls \ + --with-nettle-mini \ + --with-included-libtasn1 \ + --with-included-unistring \ + --enable-static + +make +make DESTDIR="$1" install |