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.
34 lines
2.0 KiB
34 lines
2.0 KiB
package("nsis") |
|
set_kind("binary") |
|
set_homepage("https://nsis.sourceforge.io/") |
|
set_description("NSIS (Nullsoft Scriptable Install System) is a professional open source system to create Windows installers.") |
|
|
|
add_urls("https://sourceforge.net/projects/nsis/files/NSIS%203/$(version)/nsis-$(version).zip") |
|
add_urls("https://github.com/xmake-mirror/nsis/releases/download/$(version).zip", {version = function (version) |
|
return "v" .. (version:gsub("%.", "")) .. "/nsis-" .. version |
|
end}) |
|
|
|
add_versions("3.09", "f5dc52eef1f3884230520199bac6f36b82d643d86b003ce51bd24b05c6ba7c91") |
|
|
|
add_resources("3.09", "uac", "https://github.com/xmake-mirror/nsis/releases/download/v309/UAC.zip", "20e3192af5598568887c16d88de59a52c2ce4a26e42c5fb8bee8105dcbbd1760") |
|
add_resources("3.09", "strlen_8192", "https://github.com/xmake-mirror/nsis/releases/download/v309/nsis-3.09-strlen_8192.zip", "9e3b8e77c97a46747201f95f89eba26714dd9c6dc06830c3934b3f5fbdb1beca") |
|
|
|
on_fetch(function (package, opt) |
|
if opt.system then |
|
-- we need return false to disable fallback fetch, it will stuck when call `nsis --version` |
|
return package:find_tool("makensis", table.join({check = "/CMDHELP"}, opt)) or false |
|
end |
|
end) |
|
|
|
on_install("@windows|x64", "@windows|x86", function (package) |
|
os.cp("*", package:installdir()) |
|
os.cp(path.join(package:resourcedir("strlen_8192"), "*"), package:installdir()) |
|
os.cp(path.join(package:resourcedir("uac"), "UAC.nsh"), path.join(package:installdir(), "Include")) |
|
os.cp(path.join(package:resourcedir("uac"), "Plugins", "x86-ansi", "*.dll"), path.join(package:installdir(), "Plugins", "x86-ansi")) |
|
os.cp(path.join(package:resourcedir("uac"), "Plugins", "x86-unicode", "*.dll"), path.join(package:installdir(), "Plugins", "x86-unicode")) |
|
package:addenv("PATH", "Plugins/x86-unicode") |
|
end) |
|
|
|
on_test(function (package) |
|
os.runv("makensis", {"/CMDHELP"}) |
|
end)
|
|
|