12345678910111213141516171819202122232425262728 |
- 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://ftpmirror.gnu.org/gnu/patch/patch-$(version).tar.bz2",
- "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)
|