mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
New package: feh
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Tested-By: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
committed by
Peter Korsgaard
parent
5917191b3f
commit
507e88bea8
14
package/feh/Config.in
Normal file
14
package/feh/Config.in
Normal file
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_FEH
|
||||
bool "feh"
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_XLIB_LIBXINERAMA
|
||||
select BR2_PACKAGE_XLIB_LIBXT
|
||||
select BR2_PACKAGE_IMLIB2_PNG
|
||||
select BR2_PACKAGE_IMLIB2_JPEG
|
||||
select BR2_PACKAGE_IMLIB2_X
|
||||
select BR2_PACKAGE_GIBLIB
|
||||
select BR2_PACKAGE_LIBCURL
|
||||
help
|
||||
feh is an X11 image viewer aimed mostly at console users.
|
||||
|
||||
http://feh.finalrewind.org/
|
||||
21
package/feh/feh.mk
Normal file
21
package/feh/feh.mk
Normal file
@@ -0,0 +1,21 @@
|
||||
FEH_VERSION = 2.0
|
||||
FEH_SOURCE = feh-$(FEH_VERSION).tar.bz2
|
||||
FEH_SITE = http://feh.finalrewind.org/
|
||||
FEH_DEPENDENCIES = libcurl giblib imlib2 libpng xlib_libXinerama xlib_libXt
|
||||
|
||||
define FEH_BUILD_CMDS
|
||||
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
|
||||
-C $(@D) all
|
||||
endef
|
||||
|
||||
define FEH_INSTALL_TARGET_CMDS
|
||||
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \
|
||||
DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
define FEH_UNINSTALL_TARGET_CMDS
|
||||
$(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \
|
||||
DESTDIR=$(TARGET_DIR) -C $(@D) uninstall
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS))
|
||||
Reference in New Issue
Block a user