Compare commits
4 commits
f6e5520873
...
0adc46acd2
Author | SHA1 | Date | |
---|---|---|---|
0adc46acd2 | |||
f10135fc2f | |||
3234b0c65a | |||
3853bb4749 |
3 changed files with 15 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
|
lua_modules
|
||||||
|
posts
|
||||||
|
blog
|
||||||
.tup
|
.tup
|
||||||
*.skooma
|
*.skooma
|
||||||
|
|
12
tasks.lua
12
tasks.lua
|
@ -8,7 +8,17 @@ local path = table.concat({
|
||||||
";",
|
";",
|
||||||
}, ";")
|
}, ";")
|
||||||
|
|
||||||
local cpath = path:gsub(".lua", ".so"):gsub("/share/", "/lib/")
|
local cpath = table.concat({
|
||||||
|
"lua_modules/lib/lua/5.4/?.so",
|
||||||
|
"lua_modules/lib/lua/5.4/?/init.so",
|
||||||
|
";",
|
||||||
|
}, ";")
|
||||||
|
|
||||||
|
task.setup {
|
||||||
|
description = "Sets up directories and dependencies";
|
||||||
|
"mkdir -p lua_modules .luarocks";
|
||||||
|
"luarocks install --only-deps *.rockspec";
|
||||||
|
}
|
||||||
|
|
||||||
task.clean {
|
task.clean {
|
||||||
description = "Removes local rocks";
|
description = "Removes local rocks";
|
||||||
|
|
|
@ -60,5 +60,5 @@ html
|
||||||
* content slots, data
|
* content slots, data
|
||||||
* ->
|
* ->
|
||||||
footer class: "box"
|
footer class: "box"
|
||||||
* gridBox columns: math.min(#slots.footer, 3), class: 'content-padding'
|
* gridBox columns: math.min(#slots.footer, 3), class: 'content-padding', center: true
|
||||||
* slots.footer
|
* slots.footer
|
||||||
|
|
Loading…
Reference in a new issue