blob: dfc9d19e713016b6a2e35684da24600d4c0edccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# farfetch

## インストールする方法 | Installation
### OpenBSD | NetBSD | FreeBSD
```sh
make
doas make install
```
### CRUX
```sh
doas prt-get bmake
bmake
doas bmake install
```
### Void
```sh
doas xbps-install bmake
bmake
doas bmake install
```
### Artix
```sh
doas pacman -S base-devel bmake
bmake
doas bmake install
```
### Debian | Devuan | Ubuntu | Linux Mint | PopOS
[Kazuhikoさん](https://social.076.moe/conversation/1127279#notice-2122922)
```sh
doas apt install -y build-essential bmake git pciutils
bmake
doas bmake install
```
|