Jean-Louis Fuchs effe588c0b community/zathura: upgrade to 0.4.0
Upstream switched to meson build
2018-06-12 09:27:51 +00:00

13 lines
137 B
Bash
Executable File

#!/bin/sh
Xvfb :4242 &
PID=$!
export DISPLAY=:4242
if ninja -C build meson-test; then
kill $PID
return 0
else
kill $PID
return 1
fi