diff --git a/desktop/kde/accessibility/component.xml b/desktop/kde/accessibility/component.xml
new file mode 100644
index 0000000000..8bf7b4d31d
--- /dev/null
+++ b/desktop/kde/accessibility/component.xml
@@ -0,0 +1,3 @@
+
+ desktop.kde.accessibility
+
\ No newline at end of file
diff --git a/desktop/kde/accessibility/kmag/actions.py b/desktop/kde/accessibility/kmag/actions.py
new file mode 100644
index 0000000000..2915d80fe4
--- /dev/null
+++ b/desktop/kde/accessibility/kmag/actions.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import kde5
+
+def setup():
+ kde5.configure()
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("AUTHORS", "ChangeLog*", "COPYING", "README", "TODO")
diff --git a/desktop/kde/accessibility/kmag/pspec.xml b/desktop/kde/accessibility/kmag/pspec.xml
new file mode 100644
index 0000000000..b23e674035
--- /dev/null
+++ b/desktop/kde/accessibility/kmag/pspec.xml
@@ -0,0 +1,54 @@
+
+
+
+
+ kmag
+ https://apps.kde.org/kmag/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ kmag
+ app:gui
+ A screen magnifier
+ KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc.
+ https://download.kde.org/stable/release-service/21.12.3/src/kmag-21.12.3.tar.xz
+
+ extra-cmake-modules
+ kdoctools-devel
+ ki18n-devel
+ kio-devel
+ kxmlgui-devel
+
+
+
+
+ kmag
+
+ kio
+ libqaccessibilityclient
+ icon-theme-hicolor
+
+
+ /usr
+
+
+
+
+
+
+ 2022-04-17
+ 21.12.3
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
diff --git a/desktop/kde/accessibility/kmag/translations.xml b/desktop/kde/accessibility/kmag/translations.xml
new file mode 100644
index 0000000000..0bee2962dd
--- /dev/null
+++ b/desktop/kde/accessibility/kmag/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ kmag
+ A screen magnifier
+ KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc.
+
+
diff --git a/desktop/kde/accessibility/kmouth/actions.py b/desktop/kde/accessibility/kmouth/actions.py
new file mode 100644
index 0000000000..795258567a
--- /dev/null
+++ b/desktop/kde/accessibility/kmouth/actions.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import kde5
+
+def setup():
+ kde5.configure()
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
\ No newline at end of file
diff --git a/desktop/kde/accessibility/kmouth/pspec.xml b/desktop/kde/accessibility/kmouth/pspec.xml
new file mode 100644
index 0000000000..94dec7c684
--- /dev/null
+++ b/desktop/kde/accessibility/kmouth/pspec.xml
@@ -0,0 +1,58 @@
+
+
+
+
+ kmouth
+ https://apps.kde.org/kmouth/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ kmouth
+ app:gui
+ A speech synthesizer frontend
+ KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks.
+ https://download.kde.org/stable/release-service/21.12.3/src/kmouth-21.12.3.tar.xz
+
+ extra-cmake-modules
+ kdoctools-devel
+ ki18n-devel
+ kio-devel
+ kxmlgui-devel
+ qt5-speech-devel
+
+
+
+
+ kmouth
+
+ kio
+ libqaccessibilityclient
+ icon-theme-hicolor
+ qt5-speech
+
+
+ /usr
+ /etc
+
+
+
+
+
+
+ 2022-04-17
+ 21.12.3
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
diff --git a/desktop/kde/accessibility/kmouth/translations.xml b/desktop/kde/accessibility/kmouth/translations.xml
new file mode 100644
index 0000000000..ef8c355749
--- /dev/null
+++ b/desktop/kde/accessibility/kmouth/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ kmouth
+ A speech synthesizer frontend
+ KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks.
+
+
diff --git a/editor/texstudio/actions.py b/editor/texstudio/actions.py
new file mode 100644
index 0000000000..1455fa7e70
--- /dev/null
+++ b/editor/texstudio/actions.py
@@ -0,0 +1,22 @@
+#!/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 pisitools
+from pisi.actionsapi import qt5
+
+j = "USE_SYSTEM_QUAZIP=1 USE_SYSTEM_HUNSPELL=1 INTERNAL_TERMINAL=1"
+
+def setup():
+ qt5.configure("texstudio.pro", parameters='%s' % j)
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install()
+
+# pisitools.dodoc("COPYING", "README.md")
+
diff --git a/editor/texstudio/pspec.xml b/editor/texstudio/pspec.xml
new file mode 100644
index 0000000000..234bc660da
--- /dev/null
+++ b/editor/texstudio/pspec.xml
@@ -0,0 +1,69 @@
+
+
+
+
+ texstudio
+ https://www.texstudio.org/
+
+ fury
+ uglyside@yandex.ru
+
+ GPLv3
+ app:gui
+ editor
+ TeXstudio is a fully featured LaTeX editor.
+
+ TeXstudio is an integrated writing environment for creating LaTeX documents. Our goal is to make writing LaTeX as easy and comfortable as possible. Therefore TeXstudio has numerous features like syntax-highlighting, integrated viewer, reference checking and various assistants.
+
+ https://github.com/texstudio-org/texstudio/archive/refs/tags/4.2.2.tar.gz
+
+ zlib-devel
+ quazip-devel
+ qt5-svg-devel
+ hunspell-devel
+ qt5-base-devel
+ qt5-script-devel
+ qt5-phonon-devel
+ poppler-qt5-devel
+ poppler-cpp-devel
+ ghostscript-devel
+ qtermwidget5-devel
+ qt5-declarative-devel
+
+
+
+
+ texstudio
+
+ zlib
+ libX11
+ libgcc
+ quazip
+ qt5-svg
+ hunspell
+ qt5-base
+ qt5-script
+ poppler-qt5
+ texlive-bin
+ texlive-core
+ qtermwidget5
+ qt5-declarative
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/texstudio
+ /usr/share/icons/hicolor
+
+
+
+
+ 2022-14-05
+ 4.2.2
+ First build.
+ fury
+ uglyside@yandex.ru
+
+
+
+