Package Details: fsv3 3.0-2

Git Clone URL: https://aur.archlinux.org/fsv3.git (read-only, click to copy)
Package Base: fsv3
Description: A 3D file system explorer (GTK3 port)
Upstream URL: https://github.com/jabl/fsv
Licenses: LGPL2.1
Conflicts: fsv2
Provides: fsv2
Replaces: fsv, fsv2
Submitter: fbrennan
Maintainer: fbrennan
Last Packager: fbrennan
Votes: 2
Popularity: 0.012787
First Submitted: 2023-07-04 23:26 (UTC)
Last Updated: 2023-07-04 23:28 (UTC)

Latest Comments

meow6969 commented on 2025-04-27 06:47 (UTC)

hello trying to build in a clean chroot gives the error:

==> Starting build()...
/etc/makepkg.conf: line 70: BUILDENV: readonly variable
The Meson build system
Version: 1.7.2
Source dir: /build/fsv3/src/fsv-fsv-3.0
Build dir: /build/fsv3/src/fsv-fsv-3.0/builddir
Build type: native build

meson.build:3:0: ERROR: Value "." (of type "string") for option "buildtype" is not one of the choices. Possible choices are (as string): "plain", "debug", "debugoptimized", "release", "minsize", "custom".

A full log can be found at /build/fsv3/src/fsv-fsv-3.0/builddir/meson-logs/meson-log.txt
==> ERROR: A failure occurred in build().
    Aborting...
==> ERROR: Build failed, check /home/meow/.local/chroot/meow/build

i was able to fix it with this patch for the PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index cf8cfd2..3c5a318 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -23,7 +23,7 @@ b2sums=('44d6f202b50581b193e15c2a9252e6a2db6b579f0fd2716d48f5d1de256443a5fcb366e
         '710db356167d187b85e6ae71aa20c83fd5c83946130912bba6a691f0b4dbe3c82a69147346f868f4844b363a9728ca4c21e4fbc6ae638b64ebfa296c06e9b037')

 function _check_debug() {
-    . /etc/makepkg.conf
+    eval $(cat /etc/makepkg.conf | grep -Po "^OPTIONS=\\([\\w\! ]*?\\)$")
     for option in "${OPTIONS[@]}"; do
         if [[ $option == "debug" ]]; then
             echo "debugoptimized"

ok