mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
15 lines
191 B
Bash
Executable File
15 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
brew bundle
|
|
|
|
git submodule update --init
|
|
git apply --directory=libmpdclient/ libmpdclient.patch
|
|
|
|
pushd libmpdclient
|
|
|
|
meson setup --wipe output
|
|
meson . output
|
|
ninja -C output
|
|
|
|
popd
|