mirror of
https://github.com/nomoresat/DPITunnel-cli.git
synced 2025-04-11 20:58:47 +02:00
6 lines
196 B
Bash
Executable file
6 lines
196 B
Bash
Executable file
#!/bin/ash
|
|
|
|
apk update
|
|
apk add build-base cmake openssl openssl-dev openssl-libs-static linux-headers
|
|
cmake -B./build -DCMAKE_BUILD_TYPE=RELEASE -DSTATIC_BINARY=true .
|
|
make -C ./build -j $(nproc)
|