13 lines
361 B
Bash
Executable file
13 lines
361 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source /etc/os-release
|
|
|
|
if [ "$ID" != "ubuntu" ]; then
|
|
echo "Unsupported build system. If you experience any build issues,
|
|
please try on Ubuntu, or modify the script to support your system.";
|
|
fi
|
|
|
|
sudo apt-get update && sudo apt-get install -y cmake libcurl3-openssl-dev libsqlite3-dev libxml2-dev
|
|
|
|
test -d build && rm -rf build
|
|
mkdir build
|