mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
2775cdb58c
Changelog: ========== * Fix feh not respecting aspect ratio of thumbnails that are smaller than --thumb-width and --thumb-height * Fix --no-recursive behaving like --recursive * Fix rotation by 180° corrupting images * Speed up --sort=size and --sort=mtime by caching stat(2) calls Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
760 B
BlitzBasic
31 lines
760 B
BlitzBasic
SUMMARY = "X11 image viewer aimed mostly at console users"
|
|
HOMEPAGE = "https://feh.finalrewind.org/"
|
|
SECTION = "x11/utils"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=150e4c518ff8aaecfe35694e47661d9a"
|
|
DEPENDS = "\
|
|
imlib2 \
|
|
virtual/libx11 libxt\
|
|
"
|
|
|
|
SRC_URI = "https://feh.finalrewind.org/feh-${PV}.tar.bz2"
|
|
SRC_URI[sha256sum] = "5426e2799770217af1e01c2e8c182d9ca8687d84613321d8ab4a66fe4041e9c8"
|
|
|
|
inherit mime-xdg features_check
|
|
# depends on virtual/libx11
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
EXTRA_OEMAKE = "curl=0 xinerama=0 PREFIX=/usr"
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake install app=1 'DESTDIR=${D}' 'ICON_PREFIX=${D}${datadir}/icons'
|
|
}
|
|
|
|
RDEPENDS:${PN} += "imlib2-loaders"
|
|
|
|
FILES:${PN} += "${datadir}/icons"
|