xmake.lua 365 B

123456789101112
  1. package("gspell")
  2. set_homepage("https://gitlab.gnome.org/GNOME/gspell")
  3. set_description("A spell-checking library for GTK applications")
  4. set_license("LGPL-2.0-or-later")
  5. on_fetch("linux", function (package, opt)
  6. if opt.system and package.find_package then
  7. return package:find_package("pkgconfig::gspell")
  8. end
  9. end)