actions.py 447 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/copyleft/gpl.txt.
  5. from inary.actionsapi import mesontools
  6. def setup():
  7. mesontools.meson_configure("-Dtests=false \
  8. -Ddocumentation=false \
  9. -D default-dri=3")
  10. def build():
  11. mesontools.ninja_build()
  12. def install():
  13. mesontools.ninja_install()