aboutsummaryrefslogtreecommitdiffstats
path: root/main/glm/APKBUILD
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-12-28 17:02:02 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-12-28 17:02:02 +0000
commit7c40f0b24259d0c92883fb3e33a7b4c1f77c65b9 (patch)
tree3ab114c7ddc83b617d41a0f902a00e4c55d8a184 /main/glm/APKBUILD
parent2ae144627c66b46f4071ae488562d9bba8724b0e (diff)
downloadaports-7c40f0b24259d0c92883fb3e33a7b4c1f77c65b9.tar.bz2
aports-7c40f0b24259d0c92883fb3e33a7b4c1f77c65b9.tar.xz
community/glm: move from main
Diffstat (limited to 'main/glm/APKBUILD')
-rw-r--r--main/glm/APKBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/main/glm/APKBUILD b/main/glm/APKBUILD
deleted file mode 100644
index d9a63c3973..0000000000
--- a/main/glm/APKBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=glm
-pkgver=0.9.9.3
-pkgrel=0
-pkgdesc="C++ mathematics library for graphics programming"
-url="http://glm.g-truc.net/"
-arch="noarch"
-license="MIT"
-makedepends="cmake"
-subpackages="$pkgname-dev"
-source="https://github.com/g-truc/glm/releases/download/$pkgver/glm-$pkgver.zip"
-builddir="$srcdir/$pkgname"
-
-build() {
- cd "$builddir"
- mkdir build
- cd build
- cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_LIBDIR=lib \
- -DGLM_TEST_ENABLE=TRUE
- make
-}
-
-check() {
- cd "$builddir"/build
- make test
-}
-
-package() {
- cd "$builddir"/build
- make install DESTDIR="$pkgdir"
-}
-
-sha512sums="eb7589345eb627d9fda84771bd2cf3eb0e4e9e48bf6bb7490bd8844b66558717de5dc96cde9d66e81f7ba4e54090f18dbe1bbccb2452ed0ed8c17cdf7b6e4aa2 glm-0.9.9.3.zip"