File: lcurses-9.0.0-1.rockspec

package info (click to toggle)
lua-curses 1%3A9.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,328 kB
  • sloc: sh: 11,898; ansic: 2,704; makefile: 52
file content (22 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package = "lcurses"
version = "9.0.0-1"
description = {
  detailed = "lcurses is a C library for Lua that wraps the curses API.",
  homepage = "http://github.com/lcurses/lcurses/",
  license = "MIT/X11",
  summary = "Lua bindings for curses",
}
source = {
  dir = "lcurses-release-v9.0.0",
  url = "http://github.com/lcurses/lcurses/archive/release-v9.0.0.zip",
}
dependencies = {
  "lua >= 5.1, < 5.4",
}
external_dependencies = nil
build = {
  build_command = "./configure LUA='$(LUA)' LUA_INCLUDE='-I$(LUA_INCDIR)' --prefix='$(PREFIX)' --libdir='$(LIBDIR)' --datadir='$(LUADIR)' --datarootdir='$(PREFIX)' && make clean all",
  copy_directories = {},
  install_command = "make install luadir='$(LUADIR)' luaexecdir='$(LIBDIR)'",
  type = "command",
}