mirror of
https://github.com/nucular/sfxrlua.git
synced 2024-12-24 18:44:20 +00:00
Added RockSpec; Moved demo application; README fixes
This commit is contained in:
parent
f4f27ea569
commit
501424469a
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -1,3 +1,3 @@
|
|||||||
[submodule "loveframes"]
|
[submodule "loveframes"]
|
||||||
path = loveframes
|
path = demo/loveframes
|
||||||
url = https://github.com/NikolaiResokav/LoveFrames
|
url = https://github.com/NikolaiResokav/LoveFrames
|
||||||
|
12
README.md
12
README.md
@ -1,10 +1,18 @@
|
|||||||
sfxr.lua
|
sfxr.lua
|
||||||
========
|
========
|
||||||
[![Build Status](https://travis-ci.org/nucular/sfxrlua.svg?branch=master)](https://travis-ci.org/nucular/sfxrlua)
|
|
||||||
|
|
||||||
A port of the sfxr sound effect synthesizer to pure Lua, designed to be used
|
A port of the sfxr sound effect synthesizer to pure Lua, designed to be used
|
||||||
together with the *awesome* Löve game framework.
|
together with the *awesome* [LÖVE](https://love2d.org) game framework.
|
||||||
|
|
||||||
|
Demo
|
||||||
|
----
|
||||||
|
|
||||||
|
To run the demo application you first need to download
|
||||||
|
[LoveFrames](https://github.com/NikolaiResokav/LoveFrames) as a submodule:
|
||||||
|
```
|
||||||
|
git submodule init
|
||||||
|
love demo
|
||||||
|
```
|
||||||
|
|
||||||
Example usage
|
Example usage
|
||||||
-------------
|
-------------
|
||||||
|
25
rockspec/sfxrlua-scm-1.rockspec
Normal file
25
rockspec/sfxrlua-scm-1.rockspec
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package = "sfxrlua"
|
||||||
|
version = "scm-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/nucular/sfxrlua",
|
||||||
|
branch = "master"
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "A port of the sfxr sound effect synthesizer to Lua",
|
||||||
|
detailed = [[
|
||||||
|
A port of the sfxr sound effect synthesizer to pure Lua, designed to be used
|
||||||
|
together with the awesome LÖVE game framework.
|
||||||
|
]],
|
||||||
|
homepage = "https://github.com/nucular/sfxrlua",
|
||||||
|
license = "MIT/X11"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua ~> 5.1"
|
||||||
|
-- bitop?
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
"sfxr" = "sfxr.lua"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user