aboutsummaryrefslogtreecommitdiffstats
path: root/abletonlink-1.1.0-1.rockspec
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2026-04-13 18:13:25 +0000
committers-ol <s+removethis@s-ol.nu>2026-04-13 18:13:25 +0000
commit7afbcf349dc66f95fc02ca819851c39e44500c9c (patch)
treea9e06502fce7658c28b0acf5f4eade402843ded6 /abletonlink-1.1.0-1.rockspec
parentbump version to 1.1.0 (diff)
downloadlua-abletonlink-main.tar.gz
lua-abletonlink-main.zip
fix rockspecHEADv1.1.0main
Diffstat (limited to 'abletonlink-1.1.0-1.rockspec')
-rw-r--r--abletonlink-1.1.0-1.rockspec63
1 files changed, 0 insertions, 63 deletions
diff --git a/abletonlink-1.1.0-1.rockspec b/abletonlink-1.1.0-1.rockspec
deleted file mode 100644
index a3bc950..0000000
--- a/abletonlink-1.1.0-1.rockspec
+++ /dev/null
@@ -1,63 +0,0 @@
-rockspec_format = "3.0"
-package = "abletonlink"
-version = "1.1.0-1"
-source = {
- url = 'git+https://git.s-ol.nu/lua-abletonlink.git',
- tag = 'v1.1.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',
- 'tinycthreads.c',
- 'link/extensions/abl_link/src/abl_link.cpp',
- },
- incdirs = {
- 'link/include',
- 'link/extensions/abl_link/include',
- 'link/modules/asio-standalone/asio/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'},
- },
- },
- },
- },
-}