This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
txtconv/README.md
2026-01-06 21:10:07 +09:00

50 lines
627 B
Markdown

# txconv
## インストールする方法 | Installation
### OpenBSD
```sh
make
doas make install
```
### NetBSD | FreeBSD | Dragonfly BSD
```sh
make
sudo make install
```
### CRUX
```sh
sudo prt-get bmake
bmake
sudo bmake install
```
### Void
```sh
sudo xbps-install bmake
bmake
sudo bmake install
```
### Artix
```sh
sudo pacman -S base-devel bmake
bmake
sudo bmake install
```
### Debian | Devuan | Ubuntu | Linux Mint | PopOS
```sh
sudo apt install -y build-essential bmake git
bmake
sudo bmake install
```
### Fedora | Red Hat | CentOS | Rocky Linux
```sh
sudo dnf install bmake clang
bmake
sudo bmake install
```