25 lines
718 B
Bash
25 lines
718 B
Bash
# Template file for 'glm'
|
|
pkgname=glm
|
|
version=0.9.7.4
|
|
revision=1
|
|
noarch=yes
|
|
hostmakedepends="unzip"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="MIT"
|
|
short_desc="A C++ mathematics library for graphics programming"
|
|
homepage="http://glm.g-truc.net"
|
|
distfiles="https://github.com/g-truc/glm/releases/download/${version}/glm-${version}.zip"
|
|
checksum=d48a0d732776b0fbfd17f01c830a08b50f07a3226f0cab95fcca5591982a43f2
|
|
wrksrc=${pkgname}
|
|
|
|
do_install() {
|
|
vmkdir usr/include/glm
|
|
vmkdir usr/share/doc
|
|
vcopy glm usr/include
|
|
vcopy doc usr/share/doc/glm
|
|
rm -f ${DESTDIR}/usr/include/glm/CMakeLists.txt
|
|
find ${DESTDIR} -type f -exec chmod 644 {} \;
|
|
find ${DESTDIR} -type d -exec chmod 755 {} \;
|
|
vlicense copying.txt
|
|
}
|