14 lines
241 B
Bash
14 lines
241 B
Bash
|
#!/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"
|