diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2026-01-08 18:19:01 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2026-01-08 18:19:01 -0500 |
| commit | 6f6ec554a99f17c19badcda4eb4352222e4f3778 (patch) | |
| tree | a44b5ba39530e833d233a7e14aff5d5edf5f8f5e /el9.sh | |
| parent | d13bece3d421c7f8aaf0ff9a060f2207108496c3 (diff) | |
| download | rivercfg-6f6ec554a99f17c19badcda4eb4352222e4f3778.tar.gz rivercfg-6f6ec554a99f17c19badcda4eb4352222e4f3778.tar.xz | |
More tweaks for el9. Also compile and setup mako with appropriate theme.
Diffstat (limited to 'el9.sh')
| -rwxr-xr-x | el9.sh | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -455,6 +455,30 @@ meson compile -C build meson install -C build cd - +_srcdir="$codedir/wtype" +_srcrepo=https://github.com/atx/wtype +if ! [ -d "$_srcdir" ] ; then + git clone "$_srcrepo" "$_srcdir" +fi +cd "$_srcdir" +git checkout v0.4 +meson setup -Dprefix="${_pfx}" build +meson compile -C build +meson install -C build +cd - + +_srcdir="$codedir/mako" +_srcrepo=https://github.com/emersion/mako +if ! [ -d "$_srcdir" ] ; then + git clone "$_srcrepo" "$_srcdir" +fi +cd "$_srcdir" +git checkout v1.10.0 +meson setup -Dprefix="${_pfx}" build +meson compile -C build +meson install -C build +cd - + zigver=0.15.2 zigdir="$RIVERWM_BASE/zig/zig$zigver" zigout="${zigdir}.tar.xz" |
