diff --git a/desktop/toolkit/qtermwidget5/actions.py b/desktop/toolkit/qtermwidget5/actions.py new file mode 100644 index 0000000000..1435e5c1db --- /dev/null +++ b/desktop/toolkit/qtermwidget5/actions.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get +from pisi.actionsapi import shelltools + +def setup(): + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_DESIGNER_PLUGIN=0 \ + -DUSE_QT5=true", sourceDir="..") + +def build(): + shelltools.cd("build") + cmaketools.make() + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.domove("/usr/lib64/*", "usr/lib/") + pisitools.removeDir("/usr/lib64") + + shelltools.cd("..") + pisitools.dodoc("AUTHORS", "README", "COPYING") +# By PiSiDo 2.3.1 diff --git a/desktop/toolkit/qtermwidget5/pspec.xml b/desktop/toolkit/qtermwidget5/pspec.xml new file mode 100644 index 0000000000..e444bbcd62 --- /dev/null +++ b/desktop/toolkit/qtermwidget5/pspec.xml @@ -0,0 +1,59 @@ + + + qtermwidget5 + https://github.com/qterminal/qtermwidget + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + app:gui + Terminal widget for Qt5 + A simple terminal widget for using with Qt5 based applications + + cmake + libgcc + qt5-base-devel + + https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz + + + qtermwidget5 + Development files for qtermwidget5 + + libgcc + qt5-base + + + /usr/bin/consoleq + /usr/lib + /usr/share + /usr/share/doc + + + + qtermwidget5-devel + Development files for qtermwidget5 + + qt5-base-devel + qtermwidget5 + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-13 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + diff --git a/desktop/toolkit/qtermwidget5/translations.xml b/desktop/toolkit/qtermwidget5/translations.xml new file mode 100644 index 0000000000..c62e6a62d1 --- /dev/null +++ b/desktop/toolkit/qtermwidget5/translations.xml @@ -0,0 +1,12 @@ + + + qtermwidget5 + Qt tabanlı uygulamalar için basit bir terminal modulü + + + qtermwidget5-devel + qtermwidget5 için geliştirme dosyaları + + + +