summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorFrank Neuhaus2016-08-16 14:34:47 +0200
committerFrank Neuhaus2016-08-16 14:34:47 +0200
commit9dd76a5b78bc3a8cde3c8935f1960bd035fa7def (patch)
tree3056f5b7f7d1ce090f19e8af30f2f5a22518d395 /PKGBUILD
parent5b16e102f13337c4dd9d6aa586e75c0a3b24e714 (diff)
downloadaur-9dd76a5b78bc3a8cde3c8935f1960bd035fa7def.tar.gz
explictly set LIB_SUFFIX for people who had problems with ceres incorrectly installing its library to /usr/lib64 instead of /usr/lib
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 2baad4666994..80042bdcc37b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ceres-solver
pkgver=1.11.0
-pkgrel=2
+pkgrel=3
pkgdesc="Solver for nonlinear least squares problems"
arch=('i686' 'x86_64')
url="http://ceres-solver.org/"
@@ -28,7 +28,7 @@ build() {
mkdir -p ./build
cd ./build
- cmake ${_cmakeopts[@]} ../
+ cmake ${_cmakeopts[@]} ../ -DLIB_SUFFIX=""
make
}