diff options
author | Cem Keylan <cem@ckyln.com> | 2021-03-23 20:25:17 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-03-23 20:25:17 +0300 |
commit | c72106d09fe4ccf6f33c41ed55e97792312082a6 (patch) | |
tree | 9c86c56bc13827171531771a88adaea98d21e286 /extra/nettle/build | |
parent | 54bbe7e855748bb979f630c95c584970cef6a0d8 (diff) | |
download | repository-c72106d09fe4ccf6f33c41ed55e97792312082a6.tar.gz |
nettle: move to extra
Diffstat (limited to 'extra/nettle/build')
-rwxr-xr-x | extra/nettle/build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/nettle/build b/extra/nettle/build new file mode 100755 index 00000000..32a77951 --- /dev/null +++ b/extra/nettle/build @@ -0,0 +1,11 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --enable-shared \ + --enable-static \ + --enable-mini-gmp \ + --disable-documentation + +make +make DESTDIR="$1" install |