package/glm: bump to version 0.9.9.4

- Disable tests as they are enabled by default since version 0.9.9.1:
  d307d39019
- Static and shared libraries are always built since version 0.9.9.1:
  a23dd2f800
  So, disable them as GLM is header-only (it should be noted that
  upstream wants to keep those libraries as the commit to disable them
  has been reverted:
  ca8372490e
- Add hash for license file (now in manual.md#section0)

Fixes:
 - http://autobuild.buildroot.org/results/3cf1fd3387bd4952470edcfcb93d44f58c9e7ff7

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2019-03-27 18:11:03 +01:00 committed by Thomas Petazzoni
parent fad79feac2
commit 5e1f99209a
2 changed files with 10 additions and 3 deletions

View File

@ -1,2 +1,3 @@
# Locally calculated
sha256 a220e60f8711265595be3221e530d632d5823641ecd46a3a54bc174933bff14c glm-0.9.8.4.tar.gz
sha256 3a073eb8f3be07cee74481db0e1f78eda553b554941e405c863ab64de6a2e954 glm-0.9.9.4.tar.gz
sha256 337130631a714eeae017556cad101d5324c2961214120b6214741d3d43667086 manual.md

View File

@ -4,14 +4,20 @@
#
################################################################################
GLM_VERSION = 0.9.8.4
GLM_VERSION = 0.9.9.4
GLM_SITE = $(call github,g-truc,glm,$(GLM_VERSION))
GLM_LICENSE = MIT
GLM_LICENSE_FILES = copying.txt
GLM_LICENSE_FILES = manual.md
# GLM is a header-only library, it only makes sense
# to have it installed into the staging directory.
GLM_INSTALL_STAGING = YES
GLM_INSTALL_TARGET = NO
# Don't build libraries as GLM is header-only
GLM_CONF_OPTS = \
-DGLM_TEST_ENABLE=OFF \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_STATIC_LIBS=OFF
$(eval $(cmake-package))