diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-07-24 15:33:44 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-07-24 15:33:44 -0500 |
commit | 27e4c028939d3dd847c2e2db736b7e48474bf816 (patch) | |
tree | a593285b6889296e2e6c531bddc05362c5f81539 | |
parent | cfafe2d7f20a5a99dfb2986ee21a21747827bd59 (diff) | |
download | lua-packaging-27e4c028939d3dd847c2e2db736b7e48474bf816.tar.gz lua-packaging-27e4c028939d3dd847c2e2db736b7e48474bf816.tar.bz2 lua-packaging-27e4c028939d3dd847c2e2db736b7e48474bf816.zip |
Try using references
-rwxr-xr-x | init | 3 | ||||
-rw-r--r-- | meta.lua | 8 |
2 files changed, 8 insertions, 3 deletions
@@ -1 +1,2 @@ | |||
1 | #!/bin/bash -ex | 1 | #!/bin/sh -ex |
2 | ls -lah | ||
@@ -1,7 +1,11 @@ | |||
1 | local lua_versions = {"5.1","5.2","5.3","5.4"} | ||
2 | |||
1 | return { | 3 | return { |
2 | { | 4 | { |
3 | name = "lua", | 5 | name = "lua5.1", |
4 | requires = {}, | 6 | requires = { |
7 | {"git","lua#v5.1"}, | ||
8 | }, | ||
5 | produces = {}, | 9 | produces = {}, |
6 | } | 10 | } |
7 | } | 11 | } |