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.
18 lines
609 B
18 lines
609 B
3 years ago
|
package("libxmu")
|
||
|
|
||
|
set_homepage("https://gitlab.freedesktop.org/xorg/lib/libxmu")
|
||
|
set_description("X.Org: X miscellaneous utility routines library")
|
||
|
|
||
|
add_urls("https://www.x.org/archive/individual/lib/libXmu-$(version).tar.gz")
|
||
|
add_versions("1.1.3", "5bd9d4ed1ceaac9ea023d86bf1c1632cd3b172dce4a193a72a94e1d9df87a62e")
|
||
|
|
||
|
add_deps("libxt", "libxext")
|
||
|
|
||
|
on_install("macosx", "linux", function (package)
|
||
|
import("package.tools.autoconf").install(package)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("XmuNewArea", {includes = "X11/Xmu/Xmu.h"}))
|
||
|
end)
|