1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
package = "luaposix"
version = "git-1"
description = {
homepage = "http://github.com/luaposix/luaposix/",
license = "MIT/X11",
summary = "Lua bindings for POSIX (including curses)",
detailed = "A library binding various POSIX APIs, including curses. POSIX is the IEEE Portable Operating System Interface standard. luaposix is based on lposix and lcurses.",
}
source = {
url = "git://github.com/luaposix/luaposix.git",
}
dependencies = {
"lua >= 5.1",
"luabitop >= 1.0.2",
}
external_dependencies = nil
build = {
build_command = "./bootstrap && ./configure LUA='$(LUA)' LUA_INCLUDE='-I$(LUA_INCDIR)' --prefix='$(PREFIX)' --libdir='$(LIBDIR)' --datadir='$(LUADIR)' && make clean all",
type = "command",
copy_directories = {},
install_command = "make install luadir='$(LUADIR)'",
}
|