aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-12-12 15:38:17 -0300
committerJakub Jirutka <jakub@jirutka.cz>2020-12-20 19:27:10 +0100
commit4e0c3b041e2fb1855f26b530c30a5320c062eed5 (patch)
tree371571f1de17041ead9981d54854615786a467e2
parentf6f245c194f57f6178420b141c00d5591a4e1a3c (diff)
community/suitesparse: don't install libs into /usr/lib64
libmongoose is currently installed into /usr/lib64 instead of /usr/lib: /usr/lib64/libmongoose.so /usr/lib64/libmongoose.so.2 /usr/lib64/libmongoose.so.2.0.4 Resolves !15718
-rw-r--r--community/suitesparse/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/community/suitesparse/APKBUILD b/community/suitesparse/APKBUILD
index 280364a15f0..c4de6c7cd32 100644
--- a/community/suitesparse/APKBUILD
+++ b/community/suitesparse/APKBUILD
@@ -3,7 +3,7 @@
pkgname=suitesparse
_pkgname=SuiteSparse
pkgver=5.6.0
-pkgrel=1
+pkgrel=2
pkgdesc="A collection of sparse matrix libraries"
url="http://faculty.cse.tamu.edu/davis/suitesparse.html"
arch="all !mips !mips64"
@@ -28,7 +28,8 @@ prepare() {
build() {
#BLAS=-lblas
- make library
+ make library \
+ CMAKE_OPTIONS="-DCMAKE_INSTALL_LIBDIR=$pkgdir/usr/lib"
}
package() {