SVNからのミラー

This commit is contained in:
2026-01-06 21:10:07 +09:00
commit c3b25703bf
12 changed files with 488 additions and 0 deletions

49
README.md Normal file
View File

@@ -0,0 +1,49 @@
# 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
```