mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Fixes: http://autobuild.buildroot.org/results/13e/13e28650fc58fc62c801a664d79616c6dd39a8ac Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
547 B
Makefile
22 lines
547 B
Makefile
################################################################################
|
|
#
|
|
# fbset
|
|
#
|
|
################################################################################
|
|
|
|
FBSET_VERSION = 2.1
|
|
FBSET_SITE = http://g33rt.be/migrated/Linux/fbdev
|
|
FBSET_DEPENDENCIES = host-bison host-flex
|
|
FBSET_LICENSE = GPL-2.0
|
|
FBSET_LICENSE_FILES = fbset.c
|
|
|
|
define FBSET_BUILD_CMDS
|
|
$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define FBSET_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
|
|
endef
|
|
|
|
$(eval $(generic-package))
|