aboutsummaryrefslogtreecommitdiffstats
path: root/texture-share-vk-0.1.1-1.rockspec
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2025-03-24 21:32:09 +0000
committers-ol <s+removethis@s-ol.nu>2025-03-24 21:32:09 +0000
commitdcc757e2e13fc6096fd7c9d7da27a0e732c5e0d2 (patch)
tree9be59a3850e0007b2b109c364a406565bd3755ed /texture-share-vk-0.1.1-1.rockspec
parentsupport receiving canvas (diff)
downloadlua-texture-share-vk-0.1.1.tar.gz
lua-texture-share-vk-0.1.1.zip
release 0.1.1v0.1.1
Diffstat (limited to 'texture-share-vk-0.1.1-1.rockspec')
-rw-r--r--texture-share-vk-0.1.1-1.rockspec29
1 files changed, 29 insertions, 0 deletions
diff --git a/texture-share-vk-0.1.1-1.rockspec b/texture-share-vk-0.1.1-1.rockspec
new file mode 100644
index 0000000..cd505de
--- /dev/null
+++ b/texture-share-vk-0.1.1-1.rockspec
@@ -0,0 +1,29 @@
+package = "texture-share-vk"
+version = "0.1.1-1"
+
+source = {
+ url = "git+https://git.s-ol.nu/lua-texture-share-vk.git",
+ tag = "v0.1.1",
+}
+
+description = {
+ summary = "A LÖVE library for sharing GPU textures between processes",
+ detailed = [[
+ This wraps the OpenGL C API of https://github.com/DigitOtter/texture-share-vk
+ and allows publishing a LÖVE Canvas object.
+ ]],
+ homepage = "https://git.s-ol.nu/lua-texture-share-vk/-/",
+ license = "MIT",
+}
+
+dependencies = {
+ -- requires luajit FFI
+ "lua == 5.1",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["texture-share-vk"] = "texture-share-vk.lua",
+ }
+}