commit 257da57d5df96514bee80d8dd05177dedcf06992 from: Sergey Bronnikov via: Sergey Bronnikov date: Wed Feb 08 15:16:04 2023 UTC luarocks: add initial version of spec commit - bf7c75466817062e9bb62b47d98d1647959f24fe commit + 257da57d5df96514bee80d8dd05177dedcf06992 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", + }, +}