10 lines
126 B
Plaintext
10 lines
126 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--with-tls=libtls \
|
||
|
--disable-nls
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|