|
|
|
package("redex")
|
|
|
|
set_homepage("https://fbredex.com/")
|
|
|
|
set_description("A bytecode optimizer for Android apps")
|
|
|
|
set_license("MIT")
|
|
|
|
|
|
|
|
add_urls("https://github.com/facebook/redex.git")
|
|
|
|
add_versions("2022.6.23", "802e428923e15b36993106685798e33d64f3e057")
|
|
|
|
|
|
|
|
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
|
|
|
|
|
|
|
|
add_deps("cmake")
|
|
|
|
add_deps("python 3.x", {kind = "binary"})
|
|
|
|
add_deps("boost", {configs = {
|
|
|
|
system = true,
|
|
|
|
regex = true,
|
|
|
|
thread = true,
|
|
|
|
iostreams = true,
|
|
|
|
program_options = true}})
|
|
|
|
add_deps("jsoncpp", "zlib")
|
|
|
|
|
|
|
|
add_includedirs("include/redex/libredex",
|
|
|
|
"include/redex/libresource",
|
|
|
|
"include/redex/liblocator",
|
|
|
|
"include/redex/shared",
|
|
|
|
"include/redex/sparta",
|
|
|
|
"include/redex/tools",
|
|
|
|
"include/redex/tools/common",
|
|
|
|
"include/redex/tools/tools",
|
|
|
|
"include/redex/util",
|
|
|
|
"include/redex/service")
|
|
|
|
|
|
|
|
on_install("linux", "macosx", function (package)
|
|
|
|
-- fix find boost issue, @see https://github.com/microsoft/vcpkg/issues/5936
|
|
|
|
local configs = {"-DBoost_NO_BOOST_CMAKE=ON"}
|
|
|
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
|
|
|
table.insert(configs, "-DBUILD_TYPE=" .. (package:config("shared") and "Shared" or "Static"))
|
|
|
|
if not package:config("shared") then
|
|
|
|
local jsoncpp = package:dep("jsoncpp"):fetch()
|
|
|
|
if jsoncpp and jsoncpp.libfiles then
|
|
|
|
table.insert(configs, "-DJSONCPP_LIBRARY_STATIC=" .. table.unwrap(jsoncpp.libfiles):gsub("\\", "/"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
import("package.tools.cmake").install(package, configs, {packagedeps = "jsoncpp"})
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_test(function (package)
|
|
|
|
assert(package:has_cxxtypes("DexLoader", {includes = "DexLoader.h", configs = {languages = "c++17"}}))
|
|
|
|
end)
|