Skip to content

Commit

Permalink
0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ers35 committed Apr 30, 2022
1 parent c3e1b2e commit 203babe
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion luastatic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ for i, name in ipairs(arg) do
end
if #lua_source_files == 0 then
local version = "0.0.12"
local version = "0.0.13"
print("luastatic " .. version)
print([[
usage: luastatic main.lua[1] require.lua[2] liblua.a[3] library.a[4] -I/include/lua[5] [6]
Expand Down
28 changes: 28 additions & 0 deletions rockspecs/luastatic-0.0.13-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "luastatic"
version = "0.0.13-1"
source =
{
url = "git+https://github.com/ers35/luastatic",
tag = "0.0.13",
}
description =
{
summary = "Build a standalone executable from a Lua program.",
detailed = [[
See http://lua.space/tools/build-a-standalone-executable for more information.
]],
homepage = "https://www.github.com/ers35/luastatic",
license = "CC0",
maintainer = "Eric R. Schulz <eric@ers35.com>"
}
dependencies = { "lua >= 5.1" }
build =
{
type = "builtin",
modules = {},
install = {
bin = {
["luastatic"] = "luastatic.lua",
}
}
}

0 comments on commit 203babe

Please sign in to comment.