actions.py 1022 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/python
  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 pisi.actionsapi import qt5
  6. #from pisi.actionsapi import pisitools
  7. # if pisi can't find source directory, see /var/pisi/rkrenamer/work/ and:
  8. # WorkDir="rkrenamer-"+ get.srcVERSION() +"/sub_project_dir/"
  9. def setup():
  10. qt5.configure()
  11. def build():
  12. qt5.make()
  13. def install():
  14. qt5.install()
  15. # Take a look at the source folder for these file as documentation.
  16. # pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README")
  17. # If there is no install rule for a runnable binary, you can
  18. # install it to binary directory.
  19. # pisitools.dobin("rkrenamer")
  20. # You can use these as variables, they will replace GUI values before build.
  21. # Package Name : rkrenamer
  22. # Version : 0.4.0
  23. # Summary : KTag Editor is an Audio tag editor developed in Qt5 framework.
  24. # For more information, you can look at the Actions API
  25. # from the Help menu and toolbar.