# HG changeset patch # User Hans-G?nter Theisgen # Date 1646234569 -3600 # Node ID e6b809c621b600372e5b79d6728afc1f0b6aacec # Parent 048ed88bf83240a160a7fd7d1381dcef290277d0 updated glm (0.9.9.7 -> 0.9.9.8) diff -r 048ed88bf832 -r e6b809c621b6 glm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/glm/description.txt Wed Mar 02 16:22:49 2022 +0100 @@ -0,0 +1,7 @@ +OpenGL Mathematics (GLM) is a header only C++ mathematics library +for graphics software based on the OpenGL Shading Language (GLSL) +specifications. + +GLM provides classes and functions designed and implemented with +the same naming conventions and functionality than GLSL so that +anyone who knows GLSL, can use GLM as well in C++. diff -r 048ed88bf832 -r e6b809c621b6 glm/receipt --- a/glm/receipt Wed Mar 02 09:21:45 2022 +0000 +++ b/glm/receipt Wed Mar 02 16:22:49 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="glm" -VERSION="0.9.9.7" +VERSION="0.9.9.8" CATEGORY="development" SHORT_DESC="C++ mathematics library for 3D software based on the OpenGL Shading Language (GLSL) specification." MAINTAINER="slaxemulator@gmail.com" @@ -17,13 +17,18 @@ sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' } +# Rules to configure and make the package. +compile_rules() +{ + mkdir -p $install/usr/share/doc/glm + cp -a $src/doc/* $install/usr/share/doc/glm +} + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/include - mkdir -p $fs/usr/share/doc cp -a $src/glm $fs/usr/include - cp -a $src/doc $fs/usr/share/doc/glm rm -f $fs/usr/include/glm/CMakeLists.txt }