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.
15 lines
391 B
15 lines
391 B
2 years ago
|
package("gtk+4")
|
||
|
|
||
|
set_homepage("https://gtk.org/")
|
||
|
set_description("Toolkit for creating graphical user interfaces")
|
||
|
set_license("LGPL-2.0-or-later")
|
||
|
|
||
|
if on_fetch then
|
||
|
on_fetch("linux", function (package, opt)
|
||
|
if opt.system and package.find_package then
|
||
|
return package:find_package("pkgconfig::gtk4")
|
||
|
end
|
||
|
end)
|
||
|
end
|
||
|
|