raven/pkg/install.sh

14 lines
241 B
Bash
Raw Normal View History

2022-07-26 01:03:51 +03:00
#!/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"