Update actions.py

This commit is contained in:
Rmys
2025-04-03 19:59:24 +03:00
committed by GitHub
parent 942f36d35e
commit dd67208be2
@@ -1,16 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import kde5
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import pisitools
def setup():
kde5.configure()
def build():
kde5.make()
pythonmodules.compile(pyVer="3")
def install():
kde5.install()
pythonmodules.install(pyVer="3")
pisitools.dodoc("AUTHORS", "PKG-INFO", "README.md")
pisitools.dodoc("CHANGELOG", "INSTALL", "README")