actions.py 491 B

123456789101112131415161718192021
  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()
  13. def build():
  14. mesontools.ninja_build()
  15. def install():
  16. mesontools.ninja_install()