Browse Source

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.
vectorfields
Vladimír Vondruš 14 years ago
parent
commit
8cf585ac3a
  1. 9
      PKGBUILD

9
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
}

Loading…
Cancel
Save