This file contains hidden or 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
-- manifest test | |
-- testing push access to gist repo |
This file contains hidden or 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
{ | |
packages = { | |
["lunaci"] = { | |
["0.2-1"] = { | |
dependencies = { | |
"lua >= 5.1", | |
"penlight >= 1.3.3.luadist", | |
"lualogging >= 1.3.0", | |
} | |
} |
This file contains hidden or 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
-- LuaDist Manifest file | |
-- Generated on 2016-03-23, 13:35 | |
{ | |
packages = { | |
lua_cliargs = { | |
["1.1-1"] = { | |
dependencies = { | |
"lua >= 5.1" | |
} | |
}, |
This file contains hidden or 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
#!/usr/bin/env bash | |
REPO=`dirname "$(cd ${0%/*} && echo $PWD/${0##*/})"` | |
LUADIST_BOOTSTRAP="$REPO/luadist-bootstrap" | |
INSTALLATION="$REPO/_install" | |
DATA_DIR="data" | |
# Get LuaDist bootstrap | |
git clone "https://github.com/LuaDist-core/bootstrap.git" "$LUADIST_BOOTSTRAP" |
OlderNewer