diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-22 19:35:09 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-22 19:35:09 -0500 |
| commit | 76196f760716990ee239a2455ce62b07425e0540 (patch) | |
| tree | 078377431376608a623b09486f3445c7be3e1d8b /bldRiver.sh | |
| download | rivercfg-76196f760716990ee239a2455ce62b07425e0540.tar.gz rivercfg-76196f760716990ee239a2455ce62b07425e0540.tar.xz | |
Initial
Diffstat (limited to 'bldRiver.sh')
| -rwxr-xr-x | bldRiver.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bldRiver.sh b/bldRiver.sh new file mode 100755 index 0000000..d2522ef --- /dev/null +++ b/bldRiver.sh @@ -0,0 +1,14 @@ +#!/bin/sh +set -ex +codedir="$HOME/scm/wl/river" + +if ! [ -d "$codedir" ] ; then + mkdir -p "$(basename "$codedir")" + git clone https://github.com/riverwm/river/ "$codedir" +fi + +cd "$codedir" +git submodule init +git submodule update +zig build -Dxwayland -Doptimize=ReleaseSafe --prefix ~/.local install + |
