766d3b93ad
Fixes: http://autobuild.buildroot.net/results/08d6d70f7c89617c20e727e77e0f6be09974dfc1/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
35 lines
778 B
Makefile
35 lines
778 B
Makefile
#############################################################
|
|
#
|
|
# fbset
|
|
#
|
|
#############################################################
|
|
|
|
FBSET_VERSION = 2.1
|
|
FBSET_SOURCE = fbset-$(FBSET_VERSION).tar.gz
|
|
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
|
|
FBSET_DEPENDENCIES = host-bison host-flex
|
|
FBSET_LICENSE = GPLv2
|
|
|
|
# Make sure full fbset wins over busybox fbset
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
FBSET_DEPENDENCIES += busybox
|
|
endif
|
|
|
|
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
|
|
|
|
define FBSET_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/fbset
|
|
endef
|
|
|
|
define FBSET_CLEAN_CMDS
|
|
-$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|