blob: 79ff6467df189abc084b247c85a03eb15abd9733 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
 |