mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
19 lines
476 B
Makefile
19 lines
476 B
Makefile
################################################################################
|
|
#
|
|
# fbcat
|
|
#
|
|
################################################################################
|
|
|
|
FBCAT_VERSION = 0.5.2
|
|
FBCAT_SITE = $(call github,jwilk,fbcat,$(FBCAT_VERSION))
|
|
|
|
define FBCAT_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) fbcat
|
|
endef
|
|
|
|
define FBCAT_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/fbcat $(TARGET_DIR)/usr/bin/fbcat
|
|
endef
|
|
|
|
$(eval $(generic-package))
|