sfxr.lua/rockspec/sfxr-0.0.2-1.rockspec
2016-09-19 00:05:09 +02:00

29 lines
580 B
Lua

package = "sfxr"
version = "0.0.2-1"
source = {
url = "git://github.com/nucular/sfxrlua",
tag = "v0.0.2"
}
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"
},
copy_directories = {
"docs"
}
}