Skip to content

Commit

Permalink
rockspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
osch committed Aug 1, 2021
1 parent ca650e1 commit 66866c6
Show file tree
Hide file tree
Showing 6 changed files with 222 additions and 0 deletions.
71 changes: 71 additions & 0 deletions rockspecs/lpugl-0.0.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
package = "lpugl"
version = "0.0.1-1"
local versionNumber = version:gsub("^(.*)-.-$", "%1")
source = {
url = "https://github.com/osch/lua-lpugl/archive/v"..versionNumber..".zip",
dir = "lua-lpugl-"..versionNumber,
}
description = {
summary = "Minimal API for building GUIs",
homepage = "https://github.com/osch/lua-lpugl",
license = "MIT/X11",
detailed = [[
LPugl is a minimal portable Lua-API for building GUIs.
Currently there are two drawing backends available,
see packages "lpugl_cairo" and "lpugl_opengl".
Supported platforms: X11, Windows and Mac OS X.
LPugl is based on Pugl, a minimal portable API for embeddable GUIs,
see: https://drobilla.net/software/pugl
]],
}
dependencies = {
"lua >= 5.1, <= 5.4",
"luarocks-build-extended"
}
build = {
type = "extended",
platforms = {
linux = {
modules = {
lpugl = {
libraries = { "pthread", "X11" },
}
}
},
windows = {
modules = {
lpugl = {
libraries = { "kernel32", "gdi32", "user32" },
}
}
},
macosx = {
modules = {
lpugl = {
sources = { "src/pugl.m" },
variables = {
LIBFLAG_EXTRAS = { "-framework", "Cocoa" }
}
}
}
},
},
modules = {
lpugl = {
sources = { "src/pugl.c",
"src/async_util.c",
"src/error.c",
"src/lpugl.c",
"src/lpugl_compat.c",
"src/util.c",
"src/view.c",
"src/world.c" },
defines = {
"LPUGL_VERSION="..version:gsub("^(.*)-.-$", "%1"),
"LPUGL_BUILD_DATE=$(BUILD_DATE)"
},
incdirs = { "pugl-repo/include", "." },
libdirs = { },
},
}
}
File renamed without changes.
74 changes: 74 additions & 0 deletions rockspecs/lpugl_cairo-0.0.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
package = "lpugl_cairo"
version = "0.0.1-1"
local versionNumber = version:gsub("^(.*)-.-$", "%1")
source = {
url = "https://github.com/osch/lua-lpugl/archive/v"..versionNumber..".zip",
dir = "lua-lpugl-"..versionNumber,
}
description = {
summary = "Cairo backend for LPugl, a minimal API for building GUIs",
homepage = "https://github.com/osch/lua-lpugl",
license = "MIT/X11",
detailed = [[
LPugl is a minimal portable Lua-API for building GUIs.
Supported platforms: X11, Windows and Mac OS X.
LPugl is based on Pugl, a minimal portable API for embeddable GUIs,
see: https://drobilla.net/software/pugl
]],
}
dependencies = {
"lua >= 5.1, <= 5.4",
"luarocks-build-extended",
"lpugl", "oocairo"
}
external_dependencies = {
CAIRO = {
header = "cairo/cairo.h",
library = "cairo",
}
}
build = {
type = "extended",
platforms = {
linux = {
modules = {
["lpugl_cairo"] = {
libraries = { "cairo", "pthread" },
}
}
},
windows = {
modules = {
["lpugl_cairo"] = {
libraries = { "cairo", "kernel32", "gdi32", "user32" },
}
}
},
macosx = {
modules = {
["lpugl_cairo"] = {
sources = { "src/pugl_cairo.m" },
libraries = { "cairo" },
variables = {
LIBFLAG_EXTRAS = {
"-framework", "Cocoa"
}
}
}
}
},
},
modules = {
["lpugl_cairo"] = {
sources = { "src/pugl_cairo.c",
"src/lpugl_cairo.c",
"src/lpugl_compat.c" },
defines = {
"LPUGL_VERSION="..version:gsub("^(.*)-.-$", "%1"),
"LPUGL_BUILD_DATE=$(BUILD_DATE)"
},
incdirs = { "pugl-repo/include", ".", "$(CAIRO_INCDIR)/cairo" },
libdirs = { "$(CAIRO_LIBDIR)" },
},
}
}
File renamed without changes.
77 changes: 77 additions & 0 deletions rockspecs/lpugl_opengl-0.0.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
package = "lpugl_opengl"
version = "0.0.1-1"
local versionNumber = version:gsub("^(.*)-.-$", "%1")
source = {
url = "https://github.com/osch/lua-lpugl/archive/v"..versionNumber..".zip",
dir = "lua-lpugl-"..versionNumber,
}
description = {
summary = "OpenGL backend for LPugl, a minimal API for building GUIs",
homepage = "https://github.com/osch/lua-lpugl",
license = "MIT/X11",
detailed = [[
LPugl is a minimal portable Lua-API for building GUIs.
Supported platforms: X11, Windows and Mac OS X.
LPugl is based on Pugl, a minimal portable API for embeddable GUIs,
see: https://drobilla.net/software/pugl
]],
}
dependencies = {
"lua >= 5.1, <= 5.4",
"luarocks-build-extended",
"lpugl",
}
build = {
type = "extended",

external_dependencies = {
GL = { header = "GL/gl.h" },
},
platforms = {
linux = {
modules = {
["lpugl_opengl"] = {
libraries = { "GL", "pthread" },
}
}
},
windows = {
modules = {
["lpugl_opengl"] = {
libraries = { "opengl32", "kernel32", "gdi32", "user32" },
}
}
},
macosx = {
external_dependencies = {
-- for Mac OS: OpenGL headers are under "$(xcrun --sdk macosx --show-sdk-path)/System/Library/Frameworks/OpenGL.framework/Headers"
-- (e.g. /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers)
-- They must be included using "OpenGL/gl.h" and cannot be found by luarocks in the file system
GL = { header = false },
},
modules = {
["lpugl_opengl"] = {
sources = { "src/pugl_opengl.m" },
variables = {
LIBFLAG_EXTRAS = { "-framework", "Cocoa",
"-framework", "OpenGL",
}
}
}
}
},
},
modules = {
["lpugl_opengl"] = {
sources = { "src/pugl_opengl.c",
"src/lpugl_opengl.c",
"src/lpugl_compat.c" },
defines = {
"LPUGL_VERSION="..version:gsub("^(.*)-.-$", "%1"),
"LPUGL_BUILD_DATE=$(BUILD_DATE)"
},
incdirs = { "pugl-repo/include", ".", "$(GL_INCDIR)" },
libdirs = { "$(GL_LIBDIR)" },
},
}
}
File renamed without changes.

0 comments on commit 66866c6

Please sign in to comment.