latchset / clevis

Automated Encryption Framework
GNU General Public License v3.0
832 stars 99 forks source link

clevis in void OS #431

Open rdmitry0911 opened 1 year ago

rdmitry0911 commented 1 year ago

Hi guys I'd like to install clevis in a custom built ZFSBootMenu which is void OS based. I didn't find clevis package in their repository. How to install it there manually?

sarroutbi commented 1 year ago

Hello @rdmitry0911. clevis use meson+ninja commands, so you should follow next steps:

$ wget https://github.com/latchset/clevis/releases/download/v19/clevis-19.tar.xz
$ tar Jxvf clevis-19.tar.xz 
$ cd clevis-19/
$ mkdir build
$ cd build
$ meson setup ..
$ ninja
$ sudo ninja install

We will add manual compilation steps to README.md to clarify it.

KR

rdmitry0911 commented 1 year ago

Ok, thank you