67a723248f
Changelog (see [1] for details): - Added support when active framebuffer is not starting at offset 0 - Fixed broken re-ordering of colors, rgba to argb - Fixed broken path for man page [1] http://fbgrab.monells.se Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
528 B
Makefile
22 lines
528 B
Makefile
################################################################################
|
|
#
|
|
# fbgrab
|
|
#
|
|
################################################################################
|
|
|
|
FBGRAB_VERSION = 1.3
|
|
FBGRAB_SITE = http://fbgrab.monells.se
|
|
FBGRAB_DEPENDENCIES = libpng
|
|
FBGRAB_LICENSE = GPLv2
|
|
FBGRAB_LICENSE_FILES = COPYING
|
|
|
|
define FBGRAB_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define FBGRAB_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/fbgrab $(TARGET_DIR)/usr/bin/fbgrab
|
|
endef
|
|
|
|
$(eval $(generic-package))
|