From 8cf585ac3abff8f3cff5138c9743e8f1ae9db249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 8 Feb 2012 20:27:44 +0100 Subject: [PATCH] Fixed dependencies in development PKGBUILD. Qt is needed only for building tests, thus it is in makedepends, GLEW on the other hand is needed all the time, as it is dynamic library. Mesa is dependency of GLEW, thus removing it. --- PKGBUILD | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index c30f2c3a7..f7cab5fb9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,9 +6,8 @@ pkgdesc="OpenGL 3 graphics engine" arch=('i686' 'x86_64') url="http://mosra.cz/blog/" license=('LGPLv3') -depends=('corrade') -makedepends=('cmake' 'mesa' 'glew') -optdepends=('qt') +depends=('corrade' 'glew') +makedepends=('cmake' 'qt') options=(!strip) build() { @@ -23,6 +22,6 @@ build() { } package() { - cd "$startdir/build" - make DESTDIR="$pkgdir/" install + cd "$startdir/build" + make DESTDIR="$pkgdir/" install }