actions.py 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file http://www.gnu.org/licenses/gpl.txt
  6. from pisi.actionsapi import shelltools
  7. from pisi.actionsapi import pisitools
  8. from pisi.actionsapi import autotools
  9. from pisi.actionsapi import get
  10. def setup():
  11. pisitools.dosed("Makefile", "^DOC_PATH=.*$", "DOC_PATH=$(PREFIX)/share/doc/smplayer")
  12. def build():
  13. autotools.make("PREFIX=/usr QMAKE=/usr/lib/qt5/bin/qmake -j1 LRELEASE=/usr/lib/qt5/bin/lrelease")
  14. def install():
  15. autotools.rawInstall("PREFIX=/usr DESTDIR=%s DOC_PATH=/usr/share/doc/%s" % (get.installDIR(),get.srcNAME()))
  16. pisitools.copytree("../smplayer-themes-17.3.0/themes/blackPanther-Light", "%s/usr/share/smplayer/themes/blackPanther-Light" % get.installDIR())
  17. pisitools.copytree("../smplayer-themes-17.3.0/themes/blackPanther-Real", "%s/usr/share/smplayer/themes/blackPanther-Real" % get.installDIR())
  18. pisitools.copytree("../smplayer-themes-17.3.0/themes/blackPanther-VistaLike", "%s/usr/share/smplayer/themes/blackPanther-VistaLike" % get.installDIR())
  19. pisitools.copytree("../smplayer-themes-17.3.0/themes/Breeze", "%s/usr/share/smplayer/themes/Breeze" % get.installDIR())
  20. pisitools.copytree("../smplayer-themes-17.3.0/themes/Breeze-dark", "%s/usr/share/smplayer/themes/Breeze-dark" % get.installDIR())
  21. pisitools.copytree("../smplayer-themes-17.3.0/themes/ePapirus", "%s/usr/share/smplayer/themes/ePapirus" % get.installDIR())
  22. pisitools.copytree("../smplayer-themes-17.3.0/themes/Faenza", "%s/usr/share/smplayer/themes/Faenza" % get.installDIR())
  23. pisitools.copytree("../smplayer-themes-17.3.0/themes/Faenza-Darkest", "%s/usr/share/smplayer/themes/Faenza-Darkest" % get.installDIR())
  24. pisitools.copytree("../smplayer-themes-17.3.0/themes/Faenza-Silver", "%s/usr/share/smplayer/themes/Faenza-Silver" % get.installDIR())
  25. pisitools.copytree("../smplayer-themes-17.3.0/themes/Gartoon", "%s/usr/share/smplayer/themes/Gartoon" % get.installDIR())
  26. pisitools.copytree("../smplayer-themes-17.3.0/themes/Gnome", "%s/usr/share/smplayer/themes/Gnome" % get.installDIR())
  27. pisitools.copytree("../smplayer-themes-17.3.0/themes/Masalla", "%s/usr/share/smplayer/themes/Masalla" % get.installDIR())
  28. pisitools.copytree("../smplayer-themes-17.3.0/themes/Monochrome", "%s/usr/share/smplayer/themes/Monochrome" % get.installDIR())
  29. pisitools.copytree("../smplayer-themes-17.3.0/themes/Noia", "%s/usr/share/smplayer/themes/Noia" % get.installDIR())
  30. pisitools.copytree("../smplayer-themes-17.3.0/themes/Numix-remix", "%s/usr/share/smplayer/themes/Numix-remix" % get.installDIR())
  31. pisitools.copytree("../smplayer-themes-17.3.0/themes/Numix-uTouch", "%s/usr/share/smplayer/themes/Numix-uTouch" % get.installDIR())
  32. pisitools.copytree("../smplayer-themes-17.3.0/themes/Nuvola", "%s/usr/share/smplayer/themes/Nuvola" % get.installDIR())
  33. pisitools.copytree("../smplayer-themes-17.3.0/themes/Oxygen", "%s/usr/share/smplayer/themes/Oxygen" % get.installDIR())
  34. pisitools.copytree("../smplayer-themes-17.3.0/themes/Oxygen-Air", "%s/usr/share/smplayer/themes/Oxygen-Air" % get.installDIR())
  35. pisitools.copytree("../smplayer-themes-17.3.0/themes/Oxygen-Air", "%s/usr/share/smplayer/themes/Oxygen-KDE" % get.installDIR())
  36. pisitools.copytree("../smplayer-themes-17.3.0/themes/Oxygen-Refit", "%s/usr/share/smplayer/themes/Oxygen-Refit" % get.installDIR())
  37. pisitools.copytree("../smplayer-themes-17.3.0/themes/Papirus", "%s/usr/share/smplayer/themes/Papirus" % get.installDIR())
  38. pisitools.copytree("../smplayer-themes-17.3.0/themes/PapirusDark", "%s/usr/share/smplayer/themes/PapirusDark" % get.installDIR())
  39. pisitools.copytree("../smplayer-themes-17.3.0/themes/Silk", "%s/usr/share/smplayer/themes/Silk" % get.installDIR())
  40. pisitools.copytree("../smplayer-themes-17.3.0/themes/Tango", "%s/usr/share/smplayer/themes/Tango" % get.installDIR())