actions.py 381 B

12345678910111213141516171819
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  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 kde
  6. from inary.actionsapi import inarytools
  7. def setup():
  8. kde.configure()
  9. def build():
  10. kde.make()
  11. def install():
  12. kde.install()
  13. inarytools.dodoc("AUTHORS", "COPYING", "TODO")