d21fc79a4d
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
958 B
Makefile
26 lines
958 B
Makefile
################################################################################
|
|
#
|
|
# snowball-hdmiservice
|
|
#
|
|
################################################################################
|
|
|
|
SNOWBALL_HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
|
|
SNOWBALL_HDMISERVICE_SITE = $(call github,igloocommunity,hdmiservice,$(SNOWBALL_HDMISERVICE_VERSION))
|
|
SNOWBALL_HDMISERVICE_LICENSE = MIT
|
|
SNOWBALL_HDMISERVICE_LICENSE_FILES = debian/copyright
|
|
SNOWBALL_HDMISERVICE_INSTALL_STAGING = YES
|
|
|
|
define SNOWBALL_HDMISERVICE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)"
|
|
endef
|
|
|
|
define SNOWBALL_HDMISERVICE_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define SNOWBALL_HDMISERVICE_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|