farfetch/README.md

40 行
638 B
Markdown
Raw 通常表示 履歴

2024-06-17 22:41:46 +09:00
# farfetch
2024-06-20 11:53:47 +09:00
![](https://this.is.very.dangerous.software/2024-06-20-114921_1920x1080_scrot.png)
2024-06-17 22:41:46 +09:00
## インストールする方法 | Installation
2024-06-21 16:53:19 +09:00
### OpenBSD | NetBSD | FreeBSD
```sh
make
doas make install
```
2024-06-17 22:41:46 +09:00
### CRUX
```sh
doas prt-get bmake
bmake
doas bmake install
```
2024-06-21 16:53:19 +09:00
### Void
2024-06-17 22:41:46 +09:00
```sh
2024-06-21 16:53:19 +09:00
doas xbps-install bmake
2024-06-17 22:41:46 +09:00
bmake
doas bmake install
```
2024-06-21 16:53:19 +09:00
### Artix
2024-06-17 22:41:46 +09:00
```sh
2024-06-21 16:53:19 +09:00
doas pacman -S base-devel bmake
bmake
doas bmake install
2024-06-17 22:41:46 +09:00
```
2024-06-21 16:53:19 +09:00
### Debian | Devuan | Ubuntu | Linux Mint | PopOS
[Kazuhikoさん](https://social.076.moe/conversation/1127279#notice-2122922)
2024-06-17 22:41:46 +09:00
```sh
2024-06-21 16:53:19 +09:00
doas apt install -y build-essential bmake git pciutils
bmake
doas bmake install
2024-06-17 22:41:46 +09:00
```