diff options
| author | s-ol <s+removethis@s-ol.nu> | 2022-12-13 12:31:29 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2022-12-13 15:38:48 +0000 |
| commit | 428b68cfd0b767cdfc716ffb68f8746e3ae192e0 (patch) | |
| tree | 13b8d39a21041bb7bb2f84e77864cbcb89879014 /abletonlink-1.0.0-1.rockspec | |
| download | lua-abletonlink-428b68cfd0b767cdfc716ffb68f8746e3ae192e0.tar.gz lua-abletonlink-428b68cfd0b767cdfc716ffb68f8746e3ae192e0.zip | |
implement simple get/setters
Diffstat (limited to 'abletonlink-1.0.0-1.rockspec')
| -rw-r--r-- | abletonlink-1.0.0-1.rockspec | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/abletonlink-1.0.0-1.rockspec b/abletonlink-1.0.0-1.rockspec new file mode 100644 index 0000000..ee883bb --- /dev/null +++ b/abletonlink-1.0.0-1.rockspec @@ -0,0 +1,58 @@ +rockspec_format = "3.0" +package = "abletonlink" +version = "1.0.0-1" +source = { + url = 'git+https://git.s-ol.nu/lua-abletonlink.git', + tag = 'v1.0.0', +} +description = { + summary = "Ableton Link bindings for Lua", + detailed = [[ +Lightweight wrapper of the Ableton Link C API (abl_link). + +https://github.com/Ableton/link/tree/master/extensions/abl_link + ]], + homepage = "https://git.s-ol.nu/lua-abletonlink/-/", + license = "GPL-2.0-or-later", +} + +dependencies = { + "lua >= 5.1", +} +build = { + type = 'builtin', + modules = { + -- C module + abletonlink = { + sources = { + 'abletonlink.c', + 'link/extensions/abl_link/src/abl_link.cpp', + }, + incdirs = {'link/include', 'link/extensions/abl_link/include'}, + libraries = {'stdc++'}, + }, + }, + platforms = { + linux = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_LINUX'}, + }, + }, + }, + windows = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_WINDOWS'}, + }, + }, + }, + macosx = { + modules = { + abletonlink = { + defines = {'LINK_PLATFORM_MACOSX'}, + }, + }, + }, + }, +} |
