2093053106
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for zlib license is Zlib. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/zlib( )?(license)?/Zlib/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
540 B
Makefile
20 lines
540 B
Makefile
################################################################################
|
|
#
|
|
# bullet
|
|
#
|
|
################################################################################
|
|
|
|
BULLET_VERSION = 2.85.1
|
|
BULLET_SITE = $(call github,bulletphysics,bullet3,$(BULLET_VERSION))
|
|
BULLET_INSTALL_STAGING = YES
|
|
BULLET_LICENSE = Zlib
|
|
BULLET_LICENSE_FILES = LICENSE.txt
|
|
|
|
# Disable demos apps and unit tests.
|
|
# Disable Bullet3 library.
|
|
BULLET_CONF_OPTS = -DBUILD_UNIT_TESTS=OFF \
|
|
-DBUILD_BULLET2_DEMOS=OFF \
|
|
-DBUILD_BULLET3=OFF
|
|
|
|
$(eval $(cmake-package))
|