13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--with-default-crypto=openssl \
|
||
|
--without-gcrypt \
|
||
|
--without-gnutls \
|
||
|
--without-nss \
|
||
|
--without-libxslt
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|