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.

16 lines
525 B

package("cgetopt")
set_homepage("https://github.com/xq114/cgetopt/")
set_description("A GNU getopt() implementation written in pure C.")
add_urls("https://github.com/xq114/cgetopt/archive/v$(version).tar.gz")
add_versions("1.0", "c93fe91041752f4231e07894d24354ee079317e40c30897bd664766ef4872279")
on_install(function (package)
import("package.tools.xmake").install(package)
end)
on_test(function (package)
assert(package:has_cfuncs("getopt", {includes = "getopt.h"}))
end)