~ubuntu-branches/ubuntu/saucy/lua-coxpcall/saucy

« back to all changes in this revision

Viewing changes to rockspec/coxpcall-1.12.0-1.rockspec

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2008-05-10 13:34:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080510133423-q525czb3g89q6s3s
Tags: 1.12.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package = "Coxpcall"
 
2
 
 
3
version = "1.12.0-1"
 
4
 
 
5
source = {
 
6
  url = "",
 
7
}
 
8
 
 
9
description = {
 
10
  summary = "Coroutine safe xpcall and pcall",
 
11
  detailed = [[
 
12
 Encapsulates the protected calls with a coroutine based loop, so errors can
 
13
 be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines
 
14
 yielding inside the call to pcall or xpcall.
 
15
  ]],
 
16
  license = "MIT/X11",
 
17
  homepage = "http://coxpcall.luaforge.net"
 
18
}
 
19
 
 
20
dependencies = { }
 
21
 
 
22
build = {
 
23
   type = "make",
 
24
   build_pass = false,
 
25
   install_target = "install-rocks",
 
26
   install_variables = {
 
27
     PREFIX  = "$(PREFIX)",
 
28
     LUA_DIR = "$(LUADIR)",
 
29
     BIN_DIR = "$(BINDIR)"
 
30
   }
 
31
}