diff options
author | Cem Keylan <cem@ckyln.com> | 2021-03-27 15:53:20 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-03-27 15:53:20 +0300 |
commit | 07bf9d29ed532468b918ea6d248b3e6438bfa2d3 (patch) | |
tree | 097113c9515c26c1d0ceec7f5bd575e5250b31ed /extra/cvs/build | |
parent | 87af03df5e47384c554ae45b89d9961ce1c3b1f4 (diff) | |
parent | 290e8f62cca936133f7767e20c2def6bf992e243 (diff) | |
download | repository-07bf9d29ed532468b918ea6d248b3e6438bfa2d3.tar.gz |
Merge branch 'master' into libressl
Diffstat (limited to 'extra/cvs/build')
-rwxr-xr-x | extra/cvs/build | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/extra/cvs/build b/extra/cvs/build new file mode 100755 index 00000000..79ff6467 --- /dev/null +++ b/extra/cvs/build @@ -0,0 +1,16 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-editor=/usr/bin/vi \ + --with-external-zlib + +make +make -j1 DESTDIR="$1" install + +# Remove unsupported/untested cvs junk +rm -r "$1/usr/share/cvs" |