From 9fccebb8a0968f59a198eac5c5a8b09df7ac66e5 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Fri, 5 Mar 2021 20:35:46 +0300 Subject: [PATCH] new applications. --- desktop/lookandfeel/kvantum/actions.py | 24 +++++++ desktop/lookandfeel/kvantum/pspec.xml | 59 +++++++++++++++ desktop/lookandfeel/kvantum/translations.xml | 8 +++ office/misc/xournalpp/actions.py | 30 ++++++++ office/misc/xournalpp/pspec.xml | 75 ++++++++++++++++++++ 5 files changed, 196 insertions(+) create mode 100644 desktop/lookandfeel/kvantum/actions.py create mode 100644 desktop/lookandfeel/kvantum/pspec.xml create mode 100644 desktop/lookandfeel/kvantum/translations.xml create mode 100644 office/misc/xournalpp/actions.py create mode 100644 office/misc/xournalpp/pspec.xml diff --git a/desktop/lookandfeel/kvantum/actions.py b/desktop/lookandfeel/kvantum/actions.py new file mode 100644 index 0000000000..78ae13975f --- /dev/null +++ b/desktop/lookandfeel/kvantum/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# -*- 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 pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get +from pisi.actionsapi import qt5 + +def setup(): + shelltools.cd("Kvantum") + qt5.configure() + +def build(): + shelltools.cd("Kvantum") + qt5.make() + +def install(): + shelltools.cd("Kvantum") + qt5.install() + + pisitools.dodoc("ChangeLog", "COPYING", "NEWS", "README*") diff --git a/desktop/lookandfeel/kvantum/pspec.xml b/desktop/lookandfeel/kvantum/pspec.xml new file mode 100644 index 0000000000..e6293f89eb --- /dev/null +++ b/desktop/lookandfeel/kvantum/pspec.xml @@ -0,0 +1,59 @@ + + + + + kvantum + https://github.com/tsujan/Kvantum + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + desktop.lookandfeel + Kvantum is an SVG-based theme engine for Qt4/Qt5, KDE and LXQt. + Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur. + https://github.com/tsujan/Kvantum/releases/download/V0.18.0/Kvantum-0.18.0.tar.xz + + libX11-devel + qt5-linguist + qt5-svg-devel + qt5-base-devel + icon-theme-hicolor + qt5-designer-devel + kwindowsystem-devel + qt5-x11extras-devel + qt5-assistant-devel + + + + + kvantum + + libgcc + libX11 + qt5-svg + qt5-base + kwindowsystem + qt5-x11extras + + + /usr/bin + /usr/lib + /usr/share + /usr/share/Kvantum + /usr/share/doc + + + + + + 2021-03-05 + 0.18.0 + First Beta build. + PisiLinux Community + admins@pisilinux.org + + + + diff --git a/desktop/lookandfeel/kvantum/translations.xml b/desktop/lookandfeel/kvantum/translations.xml new file mode 100644 index 0000000000..da25643a18 --- /dev/null +++ b/desktop/lookandfeel/kvantum/translations.xml @@ -0,0 +1,8 @@ + + + + Kvantum + Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur. + Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur. + + diff --git a/office/misc/xournalpp/actions.py b/office/misc/xournalpp/actions.py new file mode 100644 index 0000000000..85e9c6980d --- /dev/null +++ b/office/misc/xournalpp/actions.py @@ -0,0 +1,30 @@ +#!/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 shelltools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): +# shelltools.export("CFLAGS", "-lpthread") + pisitools.cxxflags.add("-Wno-unused-result -Wno-deprecated-declarations") + + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_BUILD_TYPE=Release", sourceDir = '..') + +def build(): + shelltools.cd("build") + cmaketools.make() + cmaketools.make("translations") + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("../AUTHORS", "../CHANGELOG.md", "../LICENSE", "../README.md") + diff --git a/office/misc/xournalpp/pspec.xml b/office/misc/xournalpp/pspec.xml new file mode 100644 index 0000000000..e154d96115 --- /dev/null +++ b/office/misc/xournalpp/pspec.xml @@ -0,0 +1,75 @@ + + + + + xournalpp + https://github.com/xournalpp/xournalpp + + fury + wascheme@tuta.io + + GPLv2 + app:gui + office.misc + Xournal++ is a handwriting notetaking software with PDF annotation support. + + Xournal++ is a handwriting notetaking software with PDF annotation support. Written in C++ with GTK3, supporting Linux, macOS and Windows 10. Supports pen input from devices such as Wacom Tablets. + + + https://github.com/xournalpp/xournalpp/archive/1.0.20.tar.gz + + + git + cmake + lua-devel + gtk3-devel + util-linux + lsb-release + libzip-devel + libxml2-devel + portaudio-devel + libsndfile-devel + poppler-glib-devel + + + + + xournalpp + + lua + gtk3 + zlib + cairo + glib2 + libXi + pango + libX11 + libgcc + libzip + libxml2 + portaudio + gdk-pixbuf + libsndfile + + + poppler-glib + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + + 2021-03-05 + 1.0.20 + First build. + fury + wascheme@tuta.io + + + +