actions.py 569 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 2.
  5. # See the file http://www.gnu.org/copyleft/gpl.txt.
  6. from inary.actionsapi import autotools
  7. from inary.actionsapi import mesontools
  8. from inary.actionsapi import cmaketools
  9. from inary.actionsapi import inarytools
  10. from inary.actionsapi import get
  11. def setup():
  12. mesontools.meson_configure("-Ddeveloper_mode=false \
  13. -Dnetwork_tests=disabled \
  14. -Dtech_preview=false")
  15. def build():
  16. mesontools.ninja_build()
  17. def install():
  18. mesontools.ninja_install()