luaocc/luaocc-0.2-1.rockspec

37 lines
654 B
Plaintext
Raw Permalink Normal View History

2021-03-28 14:27:06 -07:00
package = "luaocc"
version = "0.2-1"
2021-03-28 14:27:06 -07:00
source = {
2021-03-28 14:24:02 -07:00
url = "git+https://gitlab.com/yw05/luaocc.git",
2021-03-29 00:03:39 -07:00
tag = "0.2"
2021-03-28 14:27:06 -07:00
}
description = {
summary = "Unofficial Lua API for OpenCC",
homepage = "https://gitlab.com/yw05/luaocc",
license = "Apache"
}
dependencies = {
"lua >= 5.1 <= 5.4"
2021-03-28 14:27:06 -07:00
}
external_dependencies = {
OPENCC = {
library = "opencc"
}
}
build = {
type = "builtin",
modules = {
luaocc = {
incdirs = {
"$(OPENCC_INCDIR)"
},
libdirs = {
"$(OPENCC_LIBDIR)"
},
libraries = {
"opencc"
},
sources = "main.c"
}
}
}