add package jom (#4737)

* add package jom

* jom: add on_test

* Update xmake.lua

---------

Co-authored-by: ruki <waruqi@gmail.com>
pull/4740/head
Bai Miao 6 months ago committed by GitHub
parent a81353ec80
commit cd8b390c70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 20
      packages/j/jom/xmake.lua

@ -0,0 +1,20 @@
package("jom")
set_kind("binary")
set_homepage("https://www.qt.io/")
set_description("the parallel make tool for Windows.")
set_license("GPL")
add_urls("https://download.qt.io/official_releases/jom/jom_$(version).zip", {version = function (version)
return version:gsub("%.", "_")
end})
add_versions("1.1.4", "d533c1ef49214229681e90196ed2094691e8c4a0a0bef0b2c901debcb562682b")
add_versions("1.1.3", "128fdd846fe24f8594eed37d1d8929a0ea78df563537c0c1b1861a635013fff8")
on_install("@windows", function (package)
os.cp("*", package:installdir("bin"))
end)
on_test(function (package)
os.vrun("jom /VERSION")
end)
Loading…
Cancel
Save