93811a2b8a
KMS++ is a suite of library and test tools to interact with KMS drivers in the linux kernel. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> [Thomas: - rename prompt to kms++, suggested by Yann E. Morin - fixup the thread dependency comment - remove the mention of the python wrapper in the Config.in help text, since they are not installed - fix the Config.in comment to mention the C++ and gcc >= 4.8 dependencies - use = instead of += when appropriate - use a loop to install the test programs - use a loop to install the libraries - add installation to staging as well, both the libraries and header files - add missing dependency on host-pkgconf - add hash file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# kmsxx
|
|
#
|
|
################################################################################
|
|
|
|
KMSXX_VERSION = a706f157b86e90696808025db01de99646d51a77
|
|
KMSXX_SITE = $(call github,tomba,kmsxx,$(KMSXX_VERSION))
|
|
KMSXX_LICENSE = MPLv2.0
|
|
KMSXX_LICENSE_FILES = LICENSE
|
|
KMSXX_INSTALL_STAGING = YES
|
|
KMSXX_DEPENDENCIES = libdrm host-pkgconf
|
|
KMSXX_CONF_OPTS = -DKMSXX_ENABLE_PYTHON=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_KMSXX_INSTALL_TESTS),y)
|
|
KMSXX_TESTS = \
|
|
fbtestpat kmsblank kmscapture \
|
|
kmsprint kmsview testpat wbcap \
|
|
wbm2m
|
|
|
|
define KMSXX_INSTALL_TARGET_TESTS
|
|
$(foreach t,$(KMSXX_TESTS),\
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/$(t) \
|
|
$(TARGET_DIR)/usr/bin/$(t)
|
|
)
|
|
endef
|
|
endif
|
|
|
|
KMSXX_LIBS = kms++ kms++util
|
|
|
|
define KMSXX_INSTALL_TARGET_CMDS
|
|
$(foreach l,$(KMSXX_LIBS),\
|
|
$(INSTALL) -D -m 0755 $(@D)/lib/lib$(l).so \
|
|
$(TARGET_DIR)/usr/lib/lib$(l).so
|
|
)
|
|
$(KMSXX_INSTALL_TARGET_TESTS)
|
|
endef
|
|
|
|
define KMSXX_INSTALL_STAGING_CMDS
|
|
$(foreach l,$(KMSXX_LIBS),\
|
|
$(INSTALL) -D -m 0755 $(@D)/lib/lib$(l).so \
|
|
$(STAGING_DIR)/usr/lib/lib$(l).so ; \
|
|
mkdir -p $(STAGING_DIR)/usr/include/$(l) ; \
|
|
cp -dpfr $(@D)/$(l)/inc/$(l)/* $(STAGING_DIR)/usr/include/$(l)/
|
|
)
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|