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.
 
 
 

27 lines
1.1 KiB

package("patch")
set_kind("binary")
set_homepage("http://www.gnu.org/software/patch/patch.html")
set_description("GNU patch, which applies diff files to original files.")
if is_host("windows") then
add_urls("https://gitlab.com/xmake-mirror/patch/uploads/2ff76c0c6a35a4a6af98bb7052544c38/patch-$(version)-bin.zip")
add_urls("https://github.com/xmake-mirror/patch/releases/download/v2.5.9/patch-$(version)-bin.zip")
add_versions("2.5.9-7", "fabd6517e7bd88e067db9bf630d69bb3a38a08e044fa73d13a704ab5f8dd110b")
else
add_urls("https://ftp.gnu.org/gnu/patch/patch-$(version).tar.bz2",
"https://github.com/xmake-mirror/patch/releases/download/v$(version)/patch-$(version).tar.bz2")
add_versions("2.7.6", "3d1d001210d76c9f754c12824aa69f25de7cb27bb6765df63455b77601a0dcc9")
end
on_install("@windows", "@msys", "@cygwin", function (package)
os.cp("bin/*", package:installdir("bin"))
end)
on_install("@macosx", "@linux", function (package)
import("package.tools.autoconf").install(package)
end)
on_test(function (package)
os.vrun("patch --version")
end)