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.

26 lines
880 B

package("pkgconf")
set_kind("binary")
set_homepage("http://pkgconf.org")
set_description("A program which helps to configure compiler and linker flags for development frameworks.")
4 years ago
add_urls("https://distfiles.dereferenced.org/pkgconf/pkgconf-$(version).tar.xz")
add_versions("1.7.4", "d73f32c248a4591139a6b17777c80d4deab6b414ec2b3d21d0a24be348c476ab")
add_versions("1.8.0", "ef9c7e61822b7cb8356e6e9e1dca58d9556f3200d78acab35e4347e9d4c2bbaf")
if is_host("windows") then
4 years ago
add_deps("meson", "ninja")
end
on_install("@macosx", "@linux", "@bsd", function(package)
import("package.tools.autoconf").install(package)
end)
on_install("@windows", function(package)
import("package.tools.meson").install(package, {"-Dtests=false"})
end)
on_test(function (package)
os.vrun("pkgconf --version")
end)