Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/tangara-fw/blame/commit/64b106c13e18c33be0f2b0de532054e0ed3f731d/lib/lua-linenoise/linenoise-0.9-1.rockspec You should set ROOT_URL correctly, otherwise the web may not work correctly.
Fork of Tangara with customizations
tangara-fw/lib/lua-linenoise/linenoise-0.9-1.rockspec

34 lines
739 B

package = 'linenoise'
version = '0.9-1'
source = {
url = 'https://github.com/hoelzro/lua-linenoise/archive/0.9.tar.gz',
dir = 'lua-linenoise-0.9',
}
description = {
summary = 'A binding for the linenoise command line library',
homepage = 'https://github.com/hoelzro/lua-linenoise',
license = 'MIT/X11',
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
linenoise = {
sources = { 'linenoise.c', 'linenoiselib.c', 'encodings/utf8.c' },
},
},
platforms = {
win32 = {
modules = {
linenoise = {
sources = { 'linenoise.c', 'linenoiselib.c', 'encodings/utf8.c', 'win32fixes.c' },
libraries = { 'ws2_32' },
},
},
},
},
}