diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-03 01:28:21 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-03 01:28:21 +0300 |
commit | dd45adc488b6ba4c15a3b679f775ec15a3546d97 (patch) | |
tree | 89e9d6c79222009914b42c141216af25840b28fd /extra/links/build | |
parent | f4ecc53ade842964d8261e7a6612153ec0d19a4c (diff) | |
download | repository-dd45adc488b6ba4c15a3b679f775ec15a3546d97.tar.gz |
links: add new package at 2.23
Diffstat (limited to 'extra/links/build')
-rwxr-xr-x | extra/links/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/links/build b/extra/links/build new file mode 100755 index 00000000..51eedad9 --- /dev/null +++ b/extra/links/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --without-libevent \ + --with-ssl + +make +make DESTDIR="$1" install |