1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
package = "Orbit"
version = "2.0-1"
source = {
url = "http://luaforge.net/frs/download.php/3451/orbit-2.0.0.tar.gz",
}
description = {
summary = "MVC for Lua Web Development",
detailed = [[
Orbit is a library for developing web applications according to
the Model-View-Controller paradigm in Lua.
]],
license = "MIT/X11",
homepage = "http://www.keplerproject.org/orbit"
}
dependencies = { 'wsapi >= 1.0', 'luafilesystem >= 1.4.1', 'cosmo >= 8.04.14' }
build = {
type = "make",
build_pass = true,
install_target = "install-rocks",
install_variables = {
PREFIX = "$(PREFIX)",
LUA_BIN = "/usr/bin/env lua",
LUA_DIR = "$(LUADIR)",
BIN_DIR = "$(BINDIR)"
}
}
|