2007-07-23 11:00:58 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# fbset
|
|
|
|
#
|
|
|
|
#############################################################
|
2011-01-31 20:40:25 +01:00
|
|
|
|
2010-09-26 09:14:00 +02:00
|
|
|
FBSET_VERSION = 2.1
|
|
|
|
FBSET_SOURCE = fbset-$(FBSET_VERSION).tar.gz
|
|
|
|
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
|
2013-03-28 02:48:40 +01:00
|
|
|
FBSET_DEPENDENCIES = host-bison host-flex
|
2013-02-06 07:24:12 +01:00
|
|
|
FBSET_LICENSE = GPLv2
|
2010-09-26 09:14:00 +02:00
|
|
|
|
2011-01-31 20:40:25 +01:00
|
|
|
# Make sure full fbset wins over busybox fbset
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
FBSET_DEPENDENCIES += busybox
|
|
|
|
endif
|
|
|
|
|
2010-09-26 09:14:00 +02:00
|
|
|
define FBSET_BUILD_CMDS
|
|
|
|
$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define FBSET_INSTALL_TARGET_CMDS
|
2010-09-26 20:54:34 +02:00
|
|
|
$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
|
|
|
|
endef
|
|
|
|
|
|
|
|
define FBSET_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -f $(TARGET_DIR)/usr/sbin/fbset
|
2010-09-26 09:14:00 +02:00
|
|
|
endef
|
2008-02-19 14:39:25 +01:00
|
|
|
|
2010-09-26 09:14:00 +02:00
|
|
|
define FBSET_CLEAN_CMDS
|
|
|
|
-$(MAKE) -C $(@D) clean
|
|
|
|
endef
|
2007-07-23 11:00:58 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|