From 85a3e5089b12ff2190866abbfebe76029ba44a2f Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Thu, 26 Sep 2019 14:19:39 +1000 Subject: [PATCH] update spc2it README --- spctools/spc2it/README.md | 49 +++++++++++++++++++++++++++++++++++++++ spctools/spc2it/readme.md | 29 ----------------------- 2 files changed, 49 insertions(+), 29 deletions(-) create mode 100755 spctools/spc2it/README.md delete mode 100755 spctools/spc2it/readme.md diff --git a/spctools/spc2it/README.md b/spctools/spc2it/README.md new file mode 100755 index 0000000..f785c55 --- /dev/null +++ b/spctools/spc2it/README.md @@ -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] + Where 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 diff --git a/spctools/spc2it/readme.md b/spctools/spc2it/readme.md deleted file mode 100755 index 5369092..0000000 --- a/spctools/spc2it/readme.md +++ /dev/null @@ -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