Merge pull request #7 from yangjz1125/dev

Add cJSON
pull/13/head
ruki 6 years ago committed by GitHub
commit 67b0b368ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      packages/c/cjson/xmake.lua

@ -0,0 +1,10 @@
package("cjson")
set_homepage("https://github.com/DaveGamble/cJSON")
set_description("Ultralightweight JSON parser in ANSI C.")
set_urls("https://github.com/DaveGamble/cJSON/archive/v$(version).zip")
add_versions("1.7.10", "80a0584410656c8d8da2ba703744f44d7535fc4f0778d8bf4f980ce77c6a9f65")
on_install("macosx", "linux", function(package)
os.vrun("make")
os.vrun("make PREFIX=\"%s\" install", package:installdir())
end)
Loading…
Cancel
Save