summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Wright2021-02-04 19:05:03 -0500
committerJosh Wright2021-02-04 19:05:03 -0500
commit17f28fe2dd903cb8b3b6cbeb56c0408c5d595479 (patch)
treeff255a350592f671ebc1ba0ec1ffef23ee06b904
parentc42beec278ec70737153877fe8e67646d10cc2a5 (diff)
downloadaur-tsgl-git.tar.gz
fixed depends
added glm and doxygen to dependencies
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index aa8eacc39aa0..95082d29e2ff 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,16 @@
pkgbase = tsgl-git
pkgdesc = Thread Safe Graphics Library
pkgver = r1281.ec8a3f6
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Calvin-CS/TSGL
arch = x86_64
license = GPL
makedepends = git
depends = glew
depends = glfw
+ depends = glm
depends = freetype2
+ depends = doxygen
provides = tsgl
conflicts = tsgl
source = git+https://github.com/Calvin-CS/TSGL
diff --git a/PKGBUILD b/PKGBUILD
index 28a6579137ab..e90976b12f48 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: Josh Wright <wright.jjw@gmail.com>
pkgname=tsgl-git
pkgver=r1281.ec8a3f6
-pkgrel=1
+pkgrel=2
pkgdesc="Thread Safe Graphics Library"
arch=(x86_64)
url="https://github.com/Calvin-CS/TSGL"
license=('GPL')
-depends=(glew glfw freetype2)
+depends=(glew glfw glm freetype2 doxygen)
makedepends=(git) # packages in base-devel (make and gcc) are assumed to be installed
# (https://wiki.archlinux.org/index.php/PKGBUILD#makedepends)
optdepends=()