13 lines
186 B
Plaintext
13 lines
186 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--with-screen=ncursesw \
|
||
|
--with-ssl \
|
||
|
--with-zlib \
|
||
|
--enable-ipv6
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|