raven/pkg/install.sh
2022-07-26 01:03:51 +03:00

13 lines
241 B
Bash
Executable file

#!/bin/sh
if ! command -v arch-meson &> /dev/null
then
echo "arch-meson not found, using meson"
meson build
else
echo "found arch-meson"
arch-meson . build
fi
meson compile -C build
meson install -C build --destdir "$DEST"