From 3b7d0e480282f469a0f59074db6b770bd938323b Mon Sep 17 00:00:00 2001 From: nucular Date: Mon, 19 Sep 2016 00:01:41 +0200 Subject: [PATCH] Updated rockspec --- rockspec/sfxr-0.0.2-1.rockspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rockspec/sfxr-0.0.2-1.rockspec diff --git a/rockspec/sfxr-0.0.2-1.rockspec b/rockspec/sfxr-0.0.2-1.rockspec new file mode 100644 index 0000000..d407692 --- /dev/null +++ b/rockspec/sfxr-0.0.2-1.rockspec @@ -0,0 +1,28 @@ +package = "sfxr" +version = "0.0.2-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" + }, + copy_directories = { + "docs" + } +}