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