Skip to content

Commit

Permalink
Auto-update libenvpp to v1.4.3 (xmake-io#5462)
Browse files Browse the repository at this point in the history
* Update libenvpp to v1.4.3

* improve deps

---------

Co-authored-by: star9029 <[email protected]>
  • Loading branch information
waruqi and star-hengxing authored Oct 14, 2024
1 parent 795ca3e commit 5bd046a
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions packages/l/libenvpp/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ package("libenvpp")
set_license("Apache-2.0")

add_urls("https://github.com/ph3at/libenvpp/archive/refs/tags/$(version).tar.gz",
"https://github.com/ph3at/libenvpp.git")
"https://github.com/ph3at/libenvpp.git", {submodules = false})

add_versions("v1.4.3", "affbd735b6f47615a54c9159baef9de206cc85badb5af4f662669f3789a13fa8")
add_versions("v1.4.2", "14b2e14112036b15c7fc2d7e566ee6b2de9c2c55091e8d3de194ebed19f6fc34")
add_versions("v1.4.1", "1bcd0a1eb4eef32a53cbb410ae38d708ea662e491cc5536cb9b15d54cc8b5707")
add_versions("v1.4.0", "3f9a4a4b62abc06522de76e3a999cc3cd6b60299dc26b28ccc2183aa614f10cd")
Expand All @@ -17,15 +18,23 @@ package("libenvpp")
add_deps("fmt >=9.1.0", {configs = {header_only = false}})

on_install(function (package)
local version = package:version()
if package:gitref() or version:ge("1.4.3") then
io.replace("CMakeLists.txt", "fetch_content_from_submodule(fmt external/fmt)", "find_package(fmt REQUIRED CONFIG)\ninclude(CMakePackageConfigHelpers)", {plain = true})
end

local configs = {"-DLIBENVPP_EXAMPLES=OFF", "-DLIBENVPP_TESTS=OFF", "-DLIBENVPP_INSTALL=ON"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DLIBENVPP_CHECKS=" .. (package:is_debug() and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
os.rm(package:installdir("include/fmt"))
os.rm(package:installdir("lib/pkgconfig"))
os.rm(package:installdir("lib/cmake/fmt"))
os.rm(package:installdir("lib/fmt*"))

if version or version:lt("1.4.3") then
os.rm(package:installdir("include/fmt"))
os.rm(package:installdir("lib/pkgconfig"))
os.rm(package:installdir("lib/cmake/fmt"))
os.rm(package:installdir("lib/fmt*"))
end
end)

on_test(function (package)
Expand Down

0 comments on commit 5bd046a

Please sign in to comment.