Package Details: geeqie-git 2.1.r260.gf1c1ccb9-1

Git Clone URL: https://aur.archlinux.org/geeqie-git.git (read-only, click to copy)
Package Base: geeqie-git
Description: Lightweight image viewer
Upstream URL: https://github.com/BestImageViewer/geeqie
Licenses: GPL-2.0-or-later
Conflicts: geeqie
Provides: geeqie
Submitter: Zuf
Maintainer: xiota
Last Packager: xiota
Votes: 43
Popularity: 0.000000
First Submitted: 2012-01-06 16:19 (UTC)
Last Updated: 2024-01-20 08:08 (UTC)

Dependencies (38)

Required by (0)

Sources (1)

Pinned Comments

xiota commented on 2024-01-21 00:40 (UTC) (edited on 2024-01-21 00:42 (UTC) by xiota)

webp is currently broken. To view webp, or any other unsupported format, enable: Preferences / Advanced / Use external preview extraction.

Create and add the following scripts:

geeqie-identify.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

case "$extension" in
  webp)
    exit 0
    ;;

  *)
    exit 1
    ;;
esac

geeqie-decode.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

output=$(mktemp --tmpdir geeqie_djxl_XXXXXX.jpg)

case "$extension" in
  webp)
    convert "$1" "$output"
    mv "$output" "$2"
    ;;
esac

Latest Comments

1 2 3 4 5 Next › Last »

xiota commented on 2024-01-21 00:40 (UTC) (edited on 2024-01-21 00:42 (UTC) by xiota)

webp is currently broken. To view webp, or any other unsupported format, enable: Preferences / Advanced / Use external preview extraction.

Create and add the following scripts:

geeqie-identify.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

case "$extension" in
  webp)
    exit 0
    ;;

  *)
    exit 1
    ;;
esac

geeqie-decode.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

output=$(mktemp --tmpdir geeqie_djxl_XXXXXX.jpg)

case "$extension" in
  webp)
    convert "$1" "$output"
    mv "$output" "$2"
    ;;
esac

ipha commented on 2022-07-24 23:05 (UTC)

Looks like upstream is changing their build system and clearing out old deps, so expect occasional build failures until things settle.

bazza commented on 2022-07-24 22:53 (UTC) (edited on 2022-07-24 22:57 (UTC) by bazza)

meson.build:41:0: ERROR: Unknown options: "lirc"

without "-Dlirc" works well

andrius4669 commented on 2022-07-18 13:36 (UTC)

==> Starting prepare()...
sed: can't read configure.ac: No such file or directory
==> ERROR: A failure occurred in prepare().
    Aborting...

ipha commented on 2022-01-25 19:41 (UTC)

Oops, guess I didn't test that on a clean checkout. Fixed now.

jose1711 commented on 2022-01-25 19:04 (UTC)

..
checking for _NL_TIME_FIRST_WEEKDAY... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: error: cannot find input file: `Makefile.in'

ipha commented on 2022-01-25 16:04 (UTC)

Thank you!

If you have markdown installed it silently adds a dependency on pandoc. I've patched out the markdown check since it's not really needed.

JDAturbo commented on 2022-01-25 15:19 (UTC)

https://controlc.com/1681a636

It worked after I installed pandoc.

ipha commented on 2022-01-25 15:04 (UTC)

It builds for me without pandoc. Could you post your full build output?