Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
luacom/luacom-1.4-1.rockspec
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (32 sloc)
893 Bytes
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
| package = "LuaCOM" | |
| version = "1.4-1" | |
| source = { | |
| url = "http://luacom.luaforge.net/luacom-1.4.zip", | |
| } | |
| description = { | |
| summary = "Use COM libraries from Lua", | |
| detailed = [[ | |
| LuaCOM is an add-on library to the Lua language that allows Lua programs to use and implement objects that follow Microsoft's Component Object Model (COM) specification and use the ActiveX technology for property access and method calls. ]], | |
| license = "MIT/X11", | |
| homepage = "http://luaforge.net/projects/luacom/" | |
| } | |
| dependencies = { | |
| "lua >= 5.1" | |
| } | |
| build = { | |
| platforms = { | |
| win32 = { | |
| type = "make", | |
| build_variables = { | |
| LUA_LIBDLL = "$(LUA_LIBDIR)", | |
| LUA_INC = "$(LUA_INCDIR)", | |
| LUA = "$(LUA)", | |
| LUA_LIBSDLL = "$(LUA_LIB)" | |
| }, | |
| build_target = "lc_dll", | |
| install_variables = { | |
| LUA_LIBDIR = "$(LIBDIR)", | |
| } | |
| } | |
| } | |
| } | |