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.
25 lines
1.3 KiB
25 lines
1.3 KiB
1 year ago
|
package("libgpiod")
|
||
|
set_homepage("https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/")
|
||
|
set_description("libgpiod - C library and tools for interacting with the linux GPIO character device (gpiod stands for GPIO device)")
|
||
|
|
||
|
add_urls("https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-$(version).tar.gz",
|
||
|
"https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git")
|
||
|
add_versions("v2.0.1", "cf0d4db1d94cc99281de142063d0e28f42760c4d918d6b8854e1b27811517c34")
|
||
|
add_versions("v2.0", "a0f835c4ca4a2a3ca021090b574235ba58bb9fd612d8a6051fb1350054e04fdd")
|
||
|
add_versions("v1.6.4", "9f920260c46b155f65cba8796dcf159e4ba56950b85742af357d75a1af709e68")
|
||
|
|
||
|
add_deps("autoconf-archive", "automake", "libtool", "pkg-config")
|
||
|
|
||
|
on_install("linux", function (package)
|
||
|
local configs = {"--enable-tools=yes", "--enable-bindings-cxx"}
|
||
|
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)
|
||
|
package:addenv("PATH", "bin")
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
os.runv("gpiodetect")
|
||
|
assert(package:has_cfuncs("gpiod_api_version", {includes = "gpiod.h"}))
|
||
|
end)
|