52969c0950
Change the upstream URL as the project is now under Eclipse umbrella. Remove obsolete options like IPK nad RPM and disable JSONPLAT option that is enabled by default but requires c-json package. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
601 B
Makefile
25 lines
601 B
Makefile
################################################################################
|
|
#
|
|
# mraa
|
|
#
|
|
################################################################################
|
|
|
|
MRAA_VERSION = 2.1.0
|
|
MRAA_SITE = $(call github,eclipse,mraa,v$(MRAA_VERSION))
|
|
MRAA_LICENSE = MIT
|
|
MRAA_LICENSE_FILES = COPYING
|
|
MRAA_INSTALL_STAGING = YES
|
|
|
|
# USBPLAT only makes sense with FTDI4222, which requires the ftd2xx library,
|
|
# which doesn't exist in buildroot
|
|
|
|
MRAA_CONF_OPTS += \
|
|
-DBUILDSWIG=OFF \
|
|
-DUSBPLAT=OFF \
|
|
-DFTDI4222=OFF \
|
|
-DJSONPLAT=OFF \
|
|
-DENABLEEXAMPLES=OFF \
|
|
-DBUILDTESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|