mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
50 lines
1.0 KiB
Bash
50 lines
1.0 KiB
Bash
SUMMARY="OpenGL Mathematics library"
|
|
DESCRIPTION="GLM is a header only library, there is nothing to build, just \
|
|
include it."
|
|
HOMEPAGE="http://glm.g-truc.net"
|
|
COPYRIGHT="2005-2014 G-Truc Creation"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="http://downloads.sourceforge.net/project/ogl-math/glm-$portVersion/glm-${portVersion}.zip"
|
|
CHECKSUM_SHA256="1a8a0c84dee47b0493aa8d45ccd38dc02b917d9f14da835c5b06fb0b93bb33e8"
|
|
SOURCE_DIR="glm"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
glm$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libgl$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
glm${secondaryArchSuffix}_devel = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
glm$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libgl$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $includeDir/glm
|
|
cp -R glm/*.hpp glm/detail glm/gtc glm/gtx $includeDir/glm/
|
|
rm $includeDir/glm/detail/*.cpp
|
|
|
|
packageEntries devel $developDir
|
|
}
|