Package Details: flashmq 1.26.2-1

Git Clone URL: https://aur.archlinux.org/flashmq.git (read-only, click to copy)
Package Base: flashmq
Description: FlashMQ is a light-weight MQTT broker/server, designed to take good advantage of multi-CPU environments
Upstream URL: https://github.com/halfgaar/FlashMQ
Keywords: broker/server, flashmq mqtt
Licenses: MIT
Conflicts: flashmq
Provides: flashmq
Submitter: taotieren
Maintainer: taotieren (MJochim)
Last Packager: taotieren
Votes: 0
Popularity: 0.000000
First Submitted: 2022-01-14 06:40 (UTC)
Last Updated: 2026-05-14 04:02 (UTC)

Latest Comments

taotieren commented on 2026-01-26 08:39 (UTC)

@A_Bart Thank you. Update later.

A_Bart commented on 2026-01-26 08:36 (UTC) (edited on 2026-01-26 08:37 (UTC) by A_Bart)

I have upgraded the package recently and it wiped my configuration file, please add:

backup=('etc/flashmq/flashmq.conf')

to PKGBUILD

MJochim commented on 2022-11-26 14:04 (UTC)

When I try to install this package, pacman fails while checking for file conflicts:

error: failed to commit transaction (conflicting files) flashmq: /lib exists in filesystem (owned by filesystem) Errors occurred, no packages were upgraded. -> exit status 1

The problem is described at https://stackoverflow.com/questions/50743619/exists-in-filesystem-owned-by-filesystem-in-pkgbuild-for-arch-linux.

This patch to PKGBUILD fixes the problem for me:

@@ -21,6 +21,7 @@ sha256sums=('6cf03a9347a25fd5cccac5656a03e5c744d5e66ff059522f1ecfd26c50f38e9e')

 build() {
     cd "${srcdir}/${_pkgname}-${pkgver}/"
+    sed --in-place 's#DESTINATION "/lib#DESTINATION "/usr/lib#' CMakeLists.txt
     cmake -B build -G Ninja
     ninja -C build
 }