-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
222 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.