* add xhook

* modify xhook

* modify xhook remove add_links
pull/140/head
yecate 4 years ago committed by GitHub
parent 58d187ee25
commit 8a5bd04ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      packages/x/xhook/xmake.lua

@ -0,0 +1,24 @@
package("xhook")
set_homepage("https://github.com/iqiyi/xHook")
set_description("PLT (Procedure Linkage Table) hook library for Android native ELF (executable and shared libraries)")
add_urls("https://github.com/iqiyi/xHook/archive/$(version).tar.gz")
add_versions("v1.2.0", "b4153559ea4d0f975ad46783374a0103e165a81c767e9515a3b2d6efe70a06ae")
add_syslinks("log")
on_install("android", function (package)
os.cd("libxhook/jni")
io.writefile("xmake.lua", [[
add_rules("mode.release", "mode.debug")
target("xhook")
set_kind("static")
set_warnings("allextra", "error")
add_files("*.c")
add_headerfiles("xhook.h")
]])
import("package.tools.xmake").install(package)
end)
on_test(function (package)
assert(package:has_cfuncs("xhook_register", {includes = "xhook.h"}))
end)
Loading…
Cancel
Save