Date: Wednesday, March 27, 2019 @ 22:26:02 Author: kgizdov Revision: 445044
explicit libdir and check function Modified: arrayfire/trunk/PKGBUILD ----------+ PKGBUILD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-03-27 21:58:27 UTC (rev 445043) +++ PKGBUILD 2019-03-27 22:26:02 UTC (rev 445044) @@ -4,7 +4,7 @@ url='https://arrayfire.com' pkgver=3.6.2 arch=('x86_64') -pkgrel=1 +pkgrel=2 license=('BSD') depends=('cblas' 'fftw' 'boost-libs' 'lapacke' 'forge' 'freeimage' 'glfw' 'glew' 'glbinding') makedepends=('cmake' 'graphviz' 'doxygen' 'opencl-headers' 'boost' 'python' 'ocl-icd' 'cuda' 'git') @@ -34,6 +34,7 @@ cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ -DAF_USE_SYSTEM_FORGE=ON \ -DAF_WITH_IMAGEIO=ON \ -DAF_WITH_GRAPHICS=ON \ @@ -49,13 +50,12 @@ make } -# check() { -# cd "${srcdir}/arrayfire-full-${pkgver}/build" -# -# # Some tests fail :( -# make test -# } +check() { + cd "${srcdir}/arrayfire-full-${pkgver}/build" + make test +} + package() { cd "${srcdir}/arrayfire-full-${pkgver}"
