add isocline (#983)

pull/985/head
ruki 3 years ago committed by GitHub
parent f11e12e34b
commit ab8668c73e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 29
      packages/i/isocline/xmake.lua

@ -0,0 +1,29 @@
package("isocline")
set_homepage("https://github.com/daanx/isocline")
set_description("Isocline is a portable GNU readline alternative ")
set_license("MIT")
add_urls("https://github.com/daanx/isocline.git")
add_versions("2022.01.16", "762717b5acc7d8baf64faeb5320ae4b85cf98aac")
add_deps("cmake")
on_install("linux", "macosx", "bsd", "mingw", "windows", function (package)
local configs = {}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") and package:config("shared") then
table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON")
end
import("package.tools.cmake").build(package, configs, {buildir = "build"})
os.cp("include", package:installdir())
os.trycp("build/*.a", package:installdir("lib"))
os.trycp("build/*.dylib", package:installdir("lib"))
os.trycp("build/*.so", package:installdir("lib"))
os.trycp("build/*.lib", package:installdir("lib"))
os.trycp("build/*.dll", package:installdir("bin"))
end)
on_test(function (package)
assert(package:has_cfuncs("ic_set_history", {includes = "isocline.h"}))
end)
Loading…
Cancel
Save