aboutsummaryrefslogtreecommitdiffstats
path: root/build-scripts
diff options
context:
space:
mode:
Diffstat (limited to 'build-scripts')
-rwxr-xr-xbuild-scripts/pkg-test16
1 files changed, 16 insertions, 0 deletions
diff --git a/build-scripts/pkg-test b/build-scripts/pkg-test
new file mode 100755
index 00000000..9c8f94aa
--- /dev/null
+++ b/build-scripts/pkg-test
@@ -0,0 +1,16 @@
+#!/bin/bash
+set -e
+sudo apt-get update
+sudo apt-get -y install \
+ build-essential cmake \
+ zlib1g-dev libjpeg-dev libgnutls28-dev libssl-dev
+
+cmake -S . -B build \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/tmp/inst
+cmake --build build -j$(nproc)
+cmake --install build
+env PKG_CONFIG_PATH=/tmp/inst/lib/pkgconfig \
+ LD_LIBRARY_PATH=/tmp/inst/lib \
+ CMAKE_PREFIX_PATH=/tmp/inst \
+ PATH=/tmp/inst/bin:$PATH \
+ ./pkg-test/run-all