10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--with-ssl=openssl
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|