diff --git a/desktop/lxqt/featherpad/actions.py b/desktop/lxqt/featherpad/actions.py
index dde4fb2753..c80fdc056b 100644
--- a/desktop/lxqt/featherpad/actions.py
+++ b/desktop/lxqt/featherpad/actions.py
@@ -1,24 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-#
-# Licensed under the GNU General Public License, version 2.
-# See the file http://www.gnu.org/copyleft/gpl.txt.
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
-from pisi.actionsapi import autotools
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
-from pisi.actionsapi import get
-from pisi.actionsapi import qt5
-
-# WorkDir = ""
def setup():
- qt5.configure()
-
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DPULL_TRANSLATIONS=yes", sourceDir="..")
def build():
- qt5.make()
+ shelltools.cd("build")
+ cmaketools.make()
def install():
- qt5.install("DESTDIR=%s" % get.installDIR())
-
- pisitools.dodoc("ChangeLog", "README*", "NEWS")
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
diff --git a/desktop/lxqt/featherpad/pspec.xml b/desktop/lxqt/featherpad/pspec.xml
index f261dcec02..83d68a9fc0 100644
--- a/desktop/lxqt/featherpad/pspec.xml
+++ b/desktop/lxqt/featherpad/pspec.xml
@@ -13,23 +13,26 @@
app:gui
FeatherPad is a lightweight Qt5 plain-text editor for Linux
FeatherPad is a lightweight Qt5 plain-text editor for Linux
- https://github.com/tsujan/FeatherPad/archive/V0.9.4.tar.gz
+ https://github.com/tsujan/FeatherPad/archive/V0.11.1.tar.gz
+ extra-cmake-modules
qt5-base-devel
qt5-linguist
qt5-x11extras-devel
qt5-svg-devel
+ hunspell-devel
featherpad
- libX11
- libgcc
- qt5-svg
+ libX11
+ libgcc
+ qt5-svg
+ hunspell
qt5-base
- qt5-x11extras
+ qt5-x11extras
/usr/bin
@@ -44,6 +47,13 @@
+
+ 2019-08-16
+ 0.11.1
+ rebuild for qt5.13.0
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
2019-02-28
0.9.4