package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
987 B
22 lines
987 B
3 months ago
|
package("libdatrie")
|
||
|
|
||
|
set_homepage("https://github.com/tlwg/libdatrie")
|
||
|
set_description("an implementation of double-array structure for representing trie")
|
||
|
set_license("LGPL-2.1")
|
||
|
|
||
|
add_urls("https://github.com/tlwg/libdatrie/releases/download/v$(version)/libdatrie-$(version).tar.xz")
|
||
|
add_versions("0.2.13", "12231bb2be2581a7f0fb9904092d24b0ed2a271a16835071ed97bed65267f4be")
|
||
|
|
||
|
add_deps("m4", "pkg-config", "autoconf", "automake", "libtool")
|
||
|
|
||
|
on_install("linux", function (package)
|
||
|
local configs = {"--disable-dependency-tracking", "--disable-doxygen-doc"}
|
||
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
|
||
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
|
||
|
import("package.tools.autoconf").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("trie_new", {includes = "datrie/trie.h"}))
|
||
|
end)
|