Skip to content

Commit

Permalink
AbsTK release
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroAlvesV committed Mar 21, 2017
1 parent 1639aab commit 0d79d99
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The Abstract ToolKit is a widget toolkit for GUI and text-mode applications. It
The easiest way to install AbsTK is through [LuaRocks](https://github.com/luarocks/luarocks):

```
$ luarocks install --server=http://luarocks.org/dev abstk
$ luarocks install abstk
```

### Concepts
Expand Down
24 changes: 24 additions & 0 deletions rockspecs/abstk-release-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package = "AbsTK"
version = "release-1"
source = {
url = "git+https://github.com/PedroAlvesV/AbsTK.git"
}
description = {
summary = "The Abstract Toolkit – a widget toolkit for GUI and text-mode applications.",
detailed = [[
The Abstract Toolkit – a widget toolkit for GUI and text-mode applications.
It allows you to write an UI and, depending on the OS having or not a desktop environment, it runs on GUI (GTK) or text-mode (Curses).
]],
homepage = "https://github.com/PedroAlvesV/AbsTK",
license = "MIT"
}
dependencies = { "lgi >= 0.9.1", "lcurses >= 9.0" }
build = {
type = "builtin",
modules = {
abstk = "src/abstk.lua",
["abstk.AbsCurses"] = "src/abstk/AbsCurses.lua",
["abstk.AbsGtk"] = "src/abstk/AbsGtk.lua",
["abstk.util"] = "src/abstk/util.lua",
}
}
Binary file added rockspecs/abstk-release-1.src.rock
Binary file not shown.

0 comments on commit 0d79d99

Please sign in to comment.