Commit 7e9f8ad1 authored by Gregory Hermant's avatar Gregory Hermant Committed by Peter Korsgaard
Browse files

snowball-hdmiservice: new package

parent fc50f0c3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -250,6 +250,7 @@ source "package/sane-backends/Config.in"
source "package/sdparm/Config.in"
source "package/setserial/Config.in"
source "package/smartmontools/Config.in"
source "package/snowball-hdmiservice/Config.in"
source "package/sredird/Config.in"
source "package/statserial/Config.in"
source "package/sysstat/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_SNOWBALL_HDMISERVICE
	bool "snowball-hdmiservice"
	depends on BR2_TOOLCHAIN_HAS_THREADS	
	help
	  HDMI userspace control daemon

	  This package contains the HDMI userspace control daemon for the 
	  snowball board
	  
	  http://www.igloocommunity.org
+41 −0
Original line number Diff line number Diff line
#############################################################
#
# snowball-hdmiservice
#
#############################################################
SNOWBALL_HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
SNOWBALL_HDMISERVICE_SITE = git://igloocommunity.org/git/bsp/hdmiservice.git
SNOWBALL_HDMISERVICE_LICENSE = MIT
SNOWBALL_HDMISERVICE_LICENSE_FILES = debian/copyright
SNOWBALL_HDMISERVICE_INSTALL_STAGING = YES

define SNOWBALL_HDMISERVICE_BUILD_CMDS
	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" 	
endef

define SNOWBALL_HDMISERVICE_INSTALL_STAGING_CMDS
	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(STAGING_DIR) install
endef

define SNOWBALL_HDMISERVICE_INSTALL_TARGET_CMDS
	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(TARGET_DIR) install
endef

define SNOWBALL_HDMISERVICE_UNINSTALL_STAGING_CMDS
	rm -f $(STAGING_DIR)/usr/lib/hdmiservice.so
	rm -f $(STAGING_DIR)/usr/bin/hdmistart
	rm -f $(STAGING_DIR)/usr/include/hdmi_service_api.h
	rm -f $(STAGING_DIR)/usr/include/hdmi_service_local.h
endef

define SNOWBALL_HDMISERVICE_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/usr/lib/hdmiservice.so
	rm -f $(TARGET_DIR)/usr/bin/hdmistart
endef

define SNOWBALL_HDMISERVICE_CLEAN_CMDS
	$(MAKE) -C $(@D) clean
endef


$(eval $(generic-package))