13 lines
241 B
Bash
Executable file
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"
|