pull/1722/head
ruki 2 years ago committed by GitHub
parent 44947ead04
commit 901d18e0b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      packages/c/clib/xmake.lua

@ -0,0 +1,16 @@
package("clib")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/aheck/clib")
set_description("Header-only library for C99 that implements the most important classes from GLib: GList, GHashTable and GString.")
set_license("MIT")
add_urls("https://github.com/aheck/clib.git")
add_versions("2022.12.25", "fea69de62f0c2e01a46d02208073e2e976a5a237")
on_install(function (package)
os.cp("src/*.h", package:installdir("include"))
end)
on_test(function (package)
assert(package:has_cfuncs("g_string_insert", {includes = "gstring.h"}))
end)
Loading…
Cancel
Save