Skip to content

Commit

Permalink
quadsort: add 1.2.1+3 version (#5095)
Browse files Browse the repository at this point in the history
* Update quadsort to 2024.07.27 (#5094)

Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: star9029 <[email protected]>
  • Loading branch information
RunThem and star-hengxing committed Aug 30, 2024
1 parent f5f4c6f commit a73fb26
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions packages/q/quadsort/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,28 @@ package("quadsort")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/scandum/quadsort")
set_description("Quadsort is a branchless stable adaptive mergesort faster than quicksort.")
set_license("MIT")
set_license("Unlicense")

add_urls("https://github.com/scandum/quadsort.git")
add_versions("2023.02.03", "7b4e7b1489ab1c80eb97a90ae01deada7c740a46")
add_urls("https://github.com/scandum/quadsort.git", {
version = function (version) return version:gsub("+", "%.") end
})

add_versions("1.2.1+3", "4c357224cd9b53382248affc64e295726697bd35")
add_versions("1.1.5+4", "7b4e7b1489ab1c80eb97a90ae01deada7c740a46")

if on_check then
on_check(function (package)
if package:version():ge("1.2.1+3") then
assert(not package:has_tool("cxx", "cl"), "package(quadsort 1.2.1+3) unsupported msvc")
end
end)
end

on_install(function (package)
os.cp("src/quadsort.c", package:installdir("include"))
os.cp("src/quadsort.h", package:installdir("include"))
end)

on_test(function (package)
assert(package:has_cfuncs("quadsort", {includes = "quadsort.h"}))
assert(package:has_cfuncs("quadsort", {includes = {"string.h", "quadsort.h"}}))
end)

0 comments on commit a73fb26

Please sign in to comment.