mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
10 lines
152 B
Bash
10 lines
152 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
# You need sqlite-devel
|
||
|
git clone https://git.sr.ht/~fancycade/zkc
|
||
|
cd zkc
|
||
|
meson build --prefix=$HOME/.local
|
||
|
ninja -C build install
|
||
|
|
||
|
cd ..
|