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