12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export DESTDIR="$1"
|
||
|
|
||
|
cmake -B build \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
||
|
-DWITH_OPENSSL=ON
|
||
|
|
||
|
cmake --build build
|
||
|
cmake --install build
|