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)

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

« First ‹ Previous 1 2 3 4 5 Next › Last »

graysky commented on 2020-01-02 15:36 (UTC)

@stevenhoneyman - Can you please update/modernize the PKGBUILD? Example: https://gist.github.com/graysky2/1a716839f6cb52223c9f3fe2d3113e8a

haawda commented on 2019-07-21 13:22 (UTC)

For me only disabling lua works ('--disable-lua').

menta commented on 2019-06-18 13:49 (UTC) (edited on 2019-06-18 13:50 (UTC) by menta)

It seems that the correct Lua dependency is 'lua51' instead of 'lua'.

If the build fails with a Lua related error one of the following modifications of the PKGBUILD file may solves the problem:

  • Add the '--disable-lua' option to autogen.sh.

  • Add 'export LUA_CFLAGS=-I/usr/include/lua5.1' and 'export LUA_LIBS=-llua5.1' before calling autogen.sh.

Wild_Penguin commented on 2018-10-09 01:46 (UTC)

Hmm,

geeqie-git: /usr/local/share/man exists in filesystem (owned by filesystem)

alerque commented on 2018-08-09 13:07 (UTC)

Out of date flag appears to be invalid, this is a *-git package and builds from the latest upstream HEAD version. The displayed version will update when it builds and show the correct version on pacman -Qi geeqie-git. I don't have trouble building the latest from this recipe right now.

haawda commented on 2017-06-24 11:41 (UTC)

Is it that easy? http://dpaste.com/3XP0PYQ http://dpaste.com/2FD9BKR

haawda commented on 2017-05-21 12:19 (UTC)

Does not build for me. Can someone confirm this? I opened an upstream issue for this. https://github.com/BestImageViewer/geeqie/issues/486

Alad commented on 2015-07-14 06:44 (UTC)

The official package does have it though, and freedesktop associations won't work if this isn't included.