| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/bash
- set -xe
- apt update
- apt install -y git cmake clang pkg-config
- apt install -y libcurl openssl pcre2
- git clone https://github.com/jbeder/yaml-cpp --depth=1
- cd yaml-cpp
- cmake -DCMAKE_INSTALL_PREFIX=$PREFIX -DYAML_CPP_BUILD_TESTS=OFF -DYAML_CPP_BUILD_TOOLS=OFF .
- make install -j3
- cd ..
- git clone https://github.com/tencent/rapidjson --depth=1
- cd rapidjson
- cp -r include/* $PREFIX/include/
- cd ..
- git clone https://github.com/ftk/quickjspp --depth=1
- cd quickjspp
- cmake -DCMAKE_BUILD_TYPE=Release .
- make quickjs -j3
- install -d $PREFIX/lib/quickjs/
- install -m644 quickjs/libquickjs.a $PREFIX/lib/quickjs/
- install -d $PREFIX/include/quickjs/
- install -m644 quickjs/quickjs.h quickjs/quickjs-libc.h $PREFIX/include/quickjs/
- install -m644 quickjspp.hpp $PREFIX/include/
- cd ..
- git clone https://github.com/PerMalmberg/libcron --depth=1
- cd libcron
- git submodule update --init
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX .
- make libcron install -j3
- cd ..
- git clone https://github.com/ToruNiina/toml11 --depth=1
- cd toml11
- cmake -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_CXX_STANDARD=11 .
- make install -j3
- cd ..
|