kiss-mfavila-large/ports/libbson-git/build

18 lines
496 B
Plaintext
Raw Normal View History

2021-05-09 02:10:08 -04:00
#!/bin/sh -e
cmake . \
2021-05-11 00:07:37 -04:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_BSON=ON \
-DENABLE_CLIENT_SIDE_ENCRYPTION=OFF \
-DENABLE_EXAMPLES=OFF \
-DENABLE_ICU=OFF \
-DENABLE_MONGOC=OFF \
-DENABLE_MONGODB_AWS_AUTH=OFF \
-DENABLE_SASL=OFF \
-DENABLE_TESTS=OFF \
-DENABLE_UNINSTALL=OFF \
-DCMAKE_BUILD_TYPE=Release
2021-05-09 02:10:08 -04:00
make
make DESTDIR="$1" install