wok rev 24604

updated glm (0.9.9.7 -> 0.9.9.8)
author Hans-G?nter Theisgen
date Wed Mar 02 16:22:49 2022 +0100 (2022-03-02)
parents 048ed88bf832
children dd8bca24b693
files glm/description.txt glm/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/glm/description.txt	Wed Mar 02 16:22:49 2022 +0100
     1.3 @@ -0,0 +1,7 @@
     1.4 +OpenGL Mathematics (GLM) is a header only C++ mathematics library
     1.5 +for graphics software based on the OpenGL Shading Language (GLSL)
     1.6 +specifications.
     1.7 +
     1.8 +GLM provides classes and functions designed and implemented with
     1.9 +the same naming conventions and functionality than GLSL so that
    1.10 +anyone who knows GLSL, can use GLM as well in C++.
     2.1 --- a/glm/receipt	Wed Mar 02 09:21:45 2022 +0000
     2.2 +++ b/glm/receipt	Wed Mar 02 16:22:49 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="glm"
     2.7 -VERSION="0.9.9.7"
     2.8 +VERSION="0.9.9.8"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="C++ mathematics library for 3D software based on the OpenGL Shading Language (GLSL) specification."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12 @@ -17,13 +17,18 @@
    2.13  	sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
    2.14  }
    2.15  
    2.16 +# Rules to configure and make the package.
    2.17 +compile_rules()
    2.18 +{
    2.19 +	mkdir -p $install/usr/share/doc/glm
    2.20 +	cp -a $src/doc/*	$install/usr/share/doc/glm
    2.21 +}
    2.22 +
    2.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.24  genpkg_rules()
    2.25  {
    2.26  	mkdir -p $fs/usr/include
    2.27 -	mkdir -p $fs/usr/share/doc
    2.28  
    2.29  	cp -a $src/glm	$fs/usr/include
    2.30 -	cp -a $src/doc	$fs/usr/share/doc/glm
    2.31  	rm -f		$fs/usr/include/glm/CMakeLists.txt
    2.32  }