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 20:22:51 +09:00
|
|
|
### OpenBSD
|
2024-06-21 16:53:19 +09:00
|
|
|
```sh
|
|
|
|
make
|
|
|
|
doas make install
|
|
|
|
```
|
|
|
|
|
2024-06-21 20:22:51 +09:00
|
|
|
### NetBSD | FreeBSD | Dragonfly BSD
|
|
|
|
```sh
|
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
2024-06-17 22:41:46 +09:00
|
|
|
### CRUX
|
|
|
|
```sh
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo prt-get bmake
|
2024-06-17 22:41:46 +09:00
|
|
|
bmake
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo bmake install
|
2024-06-17 22:41:46 +09:00
|
|
|
```
|
|
|
|
|
2024-06-21 16:53:19 +09:00
|
|
|
### Void
|
2024-06-17 22:41:46 +09:00
|
|
|
```sh
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo xbps-install bmake
|
2024-06-17 22:41:46 +09:00
|
|
|
bmake
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo bmake install
|
2024-06-17 22:41:46 +09:00
|
|
|
```
|
|
|
|
|
2024-06-21 16:53:19 +09:00
|
|
|
### Artix
|
2024-06-17 22:41:46 +09:00
|
|
|
```sh
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo pacman -S base-devel bmake
|
2024-06-21 16:53:19 +09:00
|
|
|
bmake
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo bmake install
|
2024-06-17 22:41:46 +09:00
|
|
|
```
|
|
|
|
|
2024-06-22 05:14:59 +09:00
|
|
|
### OmniOS
|
|
|
|
```sh
|
|
|
|
gcc -Wall -Wextra -O3 -I/usr/include -o farfetch main.c src/*.c src/logo/*.c -L/usr/lib -lc
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo cp farfetch /usr/bin
|
|
|
|
sudo cp farfetch.1 /usr/bin/share/man/man1
|
2024-06-22 05:14:59 +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 20:22:51 +09:00
|
|
|
sudo apt install -y build-essential bmake git pciutils
|
2024-06-21 16:53:19 +09:00
|
|
|
bmake
|
2024-06-21 20:22:51 +09:00
|
|
|
sudo bmake install
|
2024-06-17 22:41:46 +09:00
|
|
|
```
|