blob: 4ade35be87381846cc422f07b1e6b390fe981a78 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #!/bin/sh -e
export LDFLAGS="$LDFLAGS -static"
./configure \
    --prefix=/usr \
    --sbindir=/usr/bin \
    --disable-nls \
    --disable-rpath \
    --disable-device-mapper \
    "--with$(cpt l -C readline '' out)-readline"
make
make DESTDIR="$1" install
 |