Skip to content

Commit 2a04040

Browse files
committed
Fixed path variable in rockspec
1 parent d1acaa3 commit 2a04040

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

fplot-1.0.2-3.rockspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package = "fplot"
2+
version = "1.0.2-3"
3+
4+
source = {
5+
url = "git+https://github.com/ItsMeForLua/fplot.git",
6+
tag = "v1.0.2-3"
7+
}
8+
9+
description = {
10+
summary = "A declarative plotting library for Fennel and Lua, powered by Gnuplot.",
11+
detailed = [[
12+
fplot provides a clean, table-based API to gnuplot, allowing you to
13+
define and generate plots directly from your Fennel or Lua code.
14+
]],
15+
homepage = "https://github.com/ItsMeForLua/fplot",
16+
license = "LGPL-3.0"
17+
}
18+
19+
dependencies = {
20+
"lua >= 5.1",
21+
"fennel >= 1.0.0"
22+
}
23+
24+
build = {
25+
type = "command",
26+
install_command = [[
27+
cp fplot.fnl "$(LUA_SRCDIR)"
28+
]]
29+
}

0 commit comments

Comments
 (0)