blob: 112aad3e26ed3ef7a5fe79b6a531acd469a99d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.4 2015/08/09 11:17:00 wiz Exp $
DISTNAME= glm-0.9.7.0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=g-truc/}
EXTRACT_SUFX= .zip
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://glm.g-truc.net/
COMMENT= C++ mathematics library for graphics programming
LICENSE= mit
# in "Happy Bunny" variation, adding:
# Restrictions: By making use of the Software for military purposes,
# you choose to make a Bunny unhappy.
NO_BUILD= yes
NO_CONFIGURE= yes
USE_TOOLS+= pax
GLM_DIR= include/glm
INSTALLATION_DIRS= ${GLM_DIR}
do-install:
${RUN}cd ${WRKSRC}/glm && \
${CHMOD} 644 *hpp detail/* gtc/* gtx/*
${RUN}cd ${WRKSRC}/glm && \
pax -rw *hpp detail gtc gtx \
${DESTDIR}${PREFIX}/${GLM_DIR}
# for test target
USE_LANGUAGES= c c++
do-test:
${RUN}cd ${WRKSRC} && \
cmake -DGLM_TEST_MODE=ON CMakeLists.txt && \
make
.include "../../mk/bsd.pkg.mk"
|