package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
1.4 KiB

package("gyp-next")
set_kind("binary")
set_homepage("https://github.com/nodejs/gyp-next")
set_description("A fork of the GYP build system for use in the Node.js projects")
set_license("BSD-3-Clause")
add_urls("https://github.com/nodejs/gyp-next/archive/refs/tags/$(version).tar.gz",
"https://github.com/nodejs/gyp-next.git")
add_versions("v0.18.3", "9f48804a65941f53e453925ce1c628fe5a6a748f9d915ae02b5eb766c4f5a2d9")
add_versions("v0.18.2", "d709119fa756fec7d7d2c7663553d73f6bf1ad4e139b4ec21fed5c65abc7bd3b")
add_versions("v0.18.1", "f9be5e64a992688b651d64c6f269a8a701b843e089c048fae0733e9eb01dd48e")
add_versions("v0.18.0", "2c0e002843da6a854d937a93d6fad5993954a457b3ffc2031d8af2dcff42caba")
add_versions("v0.16.2", "145d5719a88112ae2631a88556361da3b8780f4179a928c823ba3d18ab796464")
add_versions("v0.16.1", "892fecef9ca3fa1eff8bd18b7bcec54c6e8a2203788c048d26bccb53d9fcf737")
add_versions("v0.11.0", "27fc51481d0e71d7fdc730b4c86dcee9825d11071875384d5fe4b263935501ef")
add_deps("python 3.x", {kind = "binary"})
on_install("@windows", "@macosx", "@linux", function (package)
os.cp("*", package:installdir())
package:addenv("PATH", ".")
end)
on_test(function (package)
if is_host("windows") then
os.vrun("gyp.bat --help")
else
os.vrun("gyp --help")
end
end)