summaryrefslogtreecommitdiffstats
path: root/testing/glm/APKBUILD
blob: d96ba01837bd5f3408788a0ba79ff514d20be3d3 (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
39
40
41
42
43
44
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=glm
pkgver=0.9.3.4
pkgrel=0
pkgdesc="C++ mathematics library for graphics programming"
url="http://glm.g-truc.net/"
arch="all"
license="MIT"
depends=""
depends_dev=""
makedepends="$depends_dev cmake"
install=""
subpackages="$pkgname-dev"
source="http://downloads.sourceforge.net/ogl-math/glm-$pkgver/glm-$pkgver.zip"

_builddir="$srcdir"/glm-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	mkdir build
	cd build
	cmake .. \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_BUILD_TYPE=Release \
		-DGLM_TEST_ENABLE=ON \
		|| return 1
	make
}

package() {
	cd "$_builddir"/build
	make install DESTDIR="$pkgdir"
}

md5sums="a0cea0871bd39f2d628c12f1181faffb  glm-0.9.3.4.zip"