1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00
persephone/bin/setup

11 lines
133 B
Bash
Executable File

#!/bin/sh
brew install meson ninja
git submodule update --init
cd libmpdclient && \
meson . output && \
ninja -C output
cd ..