* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
22 lines
565 B
Makefile
22 lines
565 B
Makefile
################################################################################
|
|
#
|
|
# fbgrab
|
|
#
|
|
################################################################################
|
|
|
|
FBGRAB_VERSION = 1.4
|
|
FBGRAB_SITE = $(call github,GunnarMonell,fbgrab,$(FBGRAB_VERSION))
|
|
FBGRAB_DEPENDENCIES = libpng
|
|
FBGRAB_LICENSE = GPL-2.0
|
|
FBGRAB_LICENSE_FILES = COPYING
|
|
|
|
define FBGRAB_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) fbgrab
|
|
endef
|
|
|
|
define FBGRAB_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/fbgrab $(TARGET_DIR)/usr/bin/fbgrab
|
|
endef
|
|
|
|
$(eval $(generic-package))
|