mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-10 17:43:23 +01:00
36 lines
1.1 KiB
Markdown
36 lines
1.1 KiB
Markdown
|
## Installation
|
||
|
|
||
|
Currently there are no distribution packages available.
|
||
|
However installation is reasonably straight-forward, since Diflouroborane compiles into a single
|
||
|
mostly static binary with few dependencies.
|
||
|
|
||
|
At the moment only Linux is supported. If you managed to compile Diflouroborane please open an issue
|
||
|
outlining your steps or add a merge request expanding this part. Thanks!
|
||
|
|
||
|
### Requirements
|
||
|
|
||
|
General requirements; scroll down for distribution-specific instructions
|
||
|
|
||
|
- GNU SASL (libgsasl).
|
||
|
* If you want to compile Diflouroborane from source you will potentially also need development
|
||
|
headers
|
||
|
- capnproto
|
||
|
- rustc stable / nightly >= 1.48
|
||
|
* If your distribution does not provide a recent enough rustc, [rustup](https://rustup.rs/) helps
|
||
|
installing a local toolchain and keeping it up to date.
|
||
|
|
||
|
###### Arch Linux:
|
||
|
```shell
|
||
|
$ pacman -S gsasl rust capnproto
|
||
|
```
|
||
|
|
||
|
### Compiling from source
|
||
|
|
||
|
Diflouroborane uses Cargo, so compilation boils down to:
|
||
|
|
||
|
```shell
|
||
|
$ cargo build --release
|
||
|
```
|
||
|
|
||
|
The compiled binary can then be found in `./target/release/diflouroborane`
|