commit 1b0b21689586a0c0832d8ec6d4dcc874e2db881b from: Sergey Bronnikov via: Sergey Bronnikov date: Tue Feb 07 16:05:10 2023 UTC luarocks: add initial version of spec commit - b96ca1dd6b3682a3995ece825e0ee3ef2dc2524a commit + 1b0b21689586a0c0832d8ec6d4dcc874e2db881b blob - /dev/null blob + 2ff1229b6233bc8d3f1f1189d4101b68b73c13e5 (mode 644) --- /dev/null +++ afl-lua-scm-1.rockspec @@ -0,0 +1,27 @@ +package = "afl-lua" +version = "scm-1" +source = { + url = "git+https://github.com/ligurio/afl-lua", + branch = "master", +} + +description = { + summary = "A coverage-guided Lua fuzzer based on with American Fuzzy Lop", + homepage = "https://github.com/ligurio/afl-lua", + maintainer = "Sergey Bronnikov ", + license = "ISC", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "cmake", + -- https://github.com/luarocks/luarocks/wiki/Config-file-format#variables + variables = { + CMAKE_BINDIR = "$(BINDIR)", + CMAKE_LUADIR = "$(LUADIR)", + CMAKE_BUILD_TYPE = "RelWithDebInfo", + }, +}