Skip to content

Commit

Permalink
update rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
kmarius committed Jan 11, 2024
1 parent d76a7d6 commit 21af235
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 25 deletions.
25 changes: 0 additions & 25 deletions jsregexp-0.0.6-2.rockspec

This file was deleted.

28 changes: 28 additions & 0 deletions jsregexp-0.0.7-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "jsregexp"
version = "0.0.7-1"
source = {
url = "git://github.com/kmarius/jsregexp.git",
branch = "master",
tag = "v0.0.7",
}
description = {
summary = "javascript (ECMA19) regular expressions for lua",
detailed = [[
WIP: This library offers a single function to use javascript regular expressions in lua. It makes use of libregexp from https://bellard.org/quickjs/.
]],
homepage = "https://github.com/kmarius/jsregexp",
license = "MIT",
}
dependencies = { "lua >= 5.1" }
build = {
type = "builtin",
modules = {
["jsregexp.core"] = {
"jsregexp.c",
"libregexp/cutils.c",
"libregexp/libregexp.c",
"libregexp/libunicode.c",
},
jsregexp = "jsregexp.lua",
},
}

0 comments on commit 21af235

Please sign in to comment.