summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authoracxz2023-03-31 13:15:53 -0500
committeracxz2023-03-31 13:15:53 -0500
commit385de2db6352ee2e89f5f4b005e3b2dd9096019f (patch)
treec4b1811017d3de168c803f519aa76795d2dd26cc /PKGBUILD
parent8bd3cd00362c5266ada0798ae493b477e9924339 (diff)
downloadaur-matplotplusplus-git.tar.gz
use correct option to build shared libs
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index ab0697c95a50..0433e49383af 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: acxz <akashpatel2008 at yahoo dot com>
pkgname=matplotplusplus-git
pkgver=r437.2a8eada
-pkgrel=1
+pkgrel=2
pkgdesc="Matplot++: A C++ Graphics Library for Data Visualization"
url="https://alandefreitas.github.io/matplotplusplus/"
arch=(x86_64)
@@ -20,7 +20,7 @@ build() {
mkdir -p "$srcdir/${pkgname}/build"
cd "$srcdir/${pkgname}/build"
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
- -DMATPLOTPP_BUILD_SHARED_LIBS=ON \
+ -DBUILD_SHARED_LIBS=ON \
-DMATPLOTPP_BUILD_EXAMPLES=OFF \
-DMATPLOTPP_BUILD_TESTS=OFF \
..