mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
update spc2it README
This commit is contained in:
49
spctools/spc2it/README.md
Executable file
49
spctools/spc2it/README.md
Executable file
@@ -0,0 +1,49 @@
|
||||
SPC2IT
|
||||
======
|
||||
|
||||
Convert SPC files to IT (Impulse Tracker) files.
|
||||
|
||||
## Compiling
|
||||
|
||||
With GNU make:
|
||||
```bash
|
||||
make -j$(nproc)
|
||||
```
|
||||
|
||||
With CMake:
|
||||
```bash
|
||||
mkdir build && cd build
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||
make -j$(nproc)
|
||||
```
|
||||
|
||||
## Installing
|
||||
|
||||
```bash
|
||||
# Install to /usr/local by default
|
||||
sudo make install
|
||||
|
||||
# Install to /usr instead
|
||||
sudo make install PREFIX=/usr
|
||||
```
|
||||
|
||||
## Running
|
||||
|
||||
Run `spc2it` (or `./sp2it` locally) with no arguments to see the syntax.
|
||||
```
|
||||
SPC2IT - converts SPC700 sound files to the Impulse Tracker format
|
||||
|
||||
Usage: spc2it [options] <filename>
|
||||
Where <filename> is any .spc or .sp# file
|
||||
|
||||
Options: -t x Specify a time limit in seconds [60 default]
|
||||
-d xxxxxxxx Voices to disable (1-8) [none default]
|
||||
-r xxx Specify IT rows per pattern [200 default]
|
||||
```
|
||||
|
||||
## More information
|
||||
|
||||
Cloned from: https://github.com/uyjulian/spc2it
|
||||
|
||||
For more information, read the documentation in `doc/`.
|
||||
Also, see https://www.romhacking.net/forum/index.php?topic=10164.0
|
||||
@@ -1,29 +0,0 @@
|
||||
Cloned from: https://github.com/uyjulian/spc2it
|
||||
|
||||
SPC2IT
|
||||
======
|
||||
|
||||
Convert SPC files to IT (Impulse Tracker) files.
|
||||
|
||||
Compiling
|
||||
=========
|
||||
|
||||
You need cmake.
|
||||
|
||||
> mkdir b && cd b && cmake .. && make
|
||||
|
||||
Running
|
||||
=======
|
||||
|
||||
Enter the executable's path in the command line, then press enter to see the syntax.
|
||||
|
||||
Bugs
|
||||
====
|
||||
|
||||
• None...
|
||||
|
||||
More information
|
||||
================
|
||||
|
||||
For more information, read the documentation in ./doc/
|
||||
Also, see http://www.romhacking.net/forum/index.php?topic=10164.0
|
||||
Reference in New Issue
Block a user