1
0
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:
2019-09-26 14:19:39 +10:00
parent 508f464aa7
commit 85a3e5089b
2 changed files with 49 additions and 29 deletions

49
spctools/spc2it/README.md Executable file
View 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

View File

@@ -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