File: lcurses-git-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 (21 lines) | stat: -rw-r--r-- 721 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
package = "lcurses"
version = "git-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 = {
  url = "git://github.com/lcurses/lcurses.git",
}
dependencies = {
  "lua >= 5.1, < 5.4",
}
external_dependencies = nil
build = {
  build_command = "LUA='$(LUA)' ./bootstrap && ./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",
}