mirror of
https://github.com/MetaCubeX/subconverter.git
synced 2025-09-26 23:09:20 +08:00
51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
#!/bin/bash
|
|
set -xe
|
|
|
|
apk add gcc g++ build-base linux-headers cmake make autoconf automake libtool python2
|
|
apk add mbedtls-dev mbedtls-static zlib-dev rapidjson-dev libevent-dev libevent-static zlib-static pcre2-dev
|
|
|
|
git clone https://github.com/curl/curl --depth=1
|
|
cd curl
|
|
cmake -DCMAKE_USE_MBEDTLS=ON -DHTTP_ONLY=ON -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_USE_LIBSSH2=OFF -DBUILD_CURL_EXE=OFF . > /dev/null
|
|
make install -j2 > /dev/null
|
|
cd ..
|
|
|
|
git clone https://github.com/jbeder/yaml-cpp --depth=1
|
|
cd yaml-cpp
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DYAML_CPP_BUILD_TESTS=OFF -DYAML_CPP_BUILD_TOOLS=OFF . > /dev/null
|
|
make install -j2 > /dev/null
|
|
cd ..
|
|
|
|
git clone https://github.com/ftk/quickjspp --depth=1
|
|
cd quickjspp
|
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
|
make -j4
|
|
install -m644 quickjs/libquickjs.a /usr/lib
|
|
install -m644 quickjs/quickjs.h quickjs/quickjs-libc.h /usr/include/quickjs
|
|
install -m644 quickjspp.hpp /usr/include
|
|
cd ..
|
|
|
|
git clone https://github.com/PerMalmberg/libcron --depth=1
|
|
cd libcron
|
|
git submodule update --init
|
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
|
make -j4
|
|
install -m644 libcron/out/Release/liblibcron.a /usr/lib
|
|
install -d /usr/include/libcron/
|
|
install -m644 libcron/include/libcron/* /usr/include/libcron/
|
|
install -d /usr/include/date/
|
|
install -m644 libcron/externals/date/include/date/* /usr/include/date/
|
|
cd ..
|
|
|
|
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig
|
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
|
make -j2
|
|
rm subconverter
|
|
g++ -o base/subconverter $(find CMakeFiles/subconverter.dir/src/ -name "*.o") -static -lpcre2-8 -levent -lyaml-cpp -L/usr/lib64 -lcurl -lmbedtls -lmbedcrypto -lmbedx509 -lz -lduktape -lduktape_module -O3 -s
|
|
|
|
cd base
|
|
chmod +rx subconverter
|
|
chmod +r ./*
|
|
cd ..
|
|
mv base subconverter
|