mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
7ebfb17eaf
Also separate the fields in the hash file by two spaces. Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
644 B
Makefile
24 lines
644 B
Makefile
################################################################################
|
|
#
|
|
# a10disp
|
|
#
|
|
################################################################################
|
|
|
|
A10DISP_VERSION = 0.6.1
|
|
A10DISP_SITE = $(call github,hglm,a10disp,v$(A10DISP_VERSION))
|
|
A10DISP_LICENSE = MIT
|
|
A10DISP_LICENSE_FILES = a10disp.c
|
|
|
|
A10DISP_DEPENDENCIES = linux
|
|
|
|
define A10DISP_BUILD_CMDS
|
|
cp -f $(LINUX_DIR)/include/video/sunxi_disp_ioctl.h $(@D)/
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(@D)/a10disp.c -o $(@D)/a10disp
|
|
endef
|
|
|
|
define A10DISP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/a10disp $(TARGET_DIR)/usr/bin/a10disp
|
|
endef
|
|
|
|
$(eval $(generic-package))
|