Package Details: qownnotes 24.3.4-1

Git Clone URL: https://aur.archlinux.org/qownnotes.git (read-only, click to copy)
Package Base: qownnotes
Description: Plain-text file markdown note taking with Nextcloud/ownCloud integration. This package is the "official" release of QOwnNotes on AUR.
Upstream URL: https://www.qownnotes.org/
Keywords: markdown Nextcloud note-taking notepad ownCloud qt5 todo-list
Licenses: GPL2
Submitter: Midov
Maintainer: pbek
Last Packager: pbek
Votes: 130
Popularity: 0.56
First Submitted: 2015-11-07 14:02 (UTC)
Last Updated: 2024-03-18 18:37 (UTC)

Latest Comments

1 2 3 4 5 6 .. 17 Next › Last »

pbek commented on 2022-09-13 19:12 (UTC)

Thank you, should be ok now.

szlig commented on 2022-09-13 18:44 (UTC)

Something seems to be wrong with the download server. File size for latest release is 0k.

pbek commented on 2022-01-30 19:50 (UTC)

Please open an issue.

hazelnot commented on 2022-01-30 13:56 (UTC)

g++ segfaults when trying to compile the latest build

pbek commented on 2022-01-30 12:01 (UTC)

And so I revered the changes again :)

Behem0th commented on 2022-01-29 18:10 (UTC)

@pbek Please don't do this. Arch Linux global compiling option store in makepkg.conf Simple change to MAKEFLAGS="-j$(nproc)". Not need to do that to every pkg in AUR.

https://wiki.archlinux.org/title/Makepkg#Parallel_compilation

pbek commented on 2022-01-29 17:44 (UTC)

Thank you, I'll add that.

Behem0th commented on 2022-01-29 17:14 (UTC)

@derchef

https://wiki.archlinux.org/title/Makepkg#Parallel_compilation

derchef commented on 2022-01-29 15:43 (UTC)

Could it be possible for the PKGBUILD to use more threads for compiling? Right now it only uses one core which slows down the time it needs to compile.

Proposed changes to PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index 8d08f64..112f460 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,7 +22,7 @@ prepare() {
 build() {
     cd "${pkgname}-${pkgver}"
     qmake QMAKE_CFLAGS_RELEASE="${CFLAGS}" QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" QMAKE_LFLAGS_RELEASE="${LDFLAGS}"
-    make
+    make -j$(nproc)
 }

 package() {