diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-05-07 15:29:52 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-05-07 15:29:52 +0200 |
commit | 76b0bfc01332c86f2dfd5c1166d223ed1d4ce364 (patch) | |
tree | 1863d9e30f5311edc7a567fbc778ac188ba8be00 /community/vtk/PKGBUILD | |
parent | 1a65514b6f2a5d1088dde36d927180bcef33000e (diff) | |
download | packages-76b0bfc01332c86f2dfd5c1166d223ed1d4ce364.tar.xz |
community/vtk: no gnuplot (cycle) and python-matplotlib on i486 (we still need Java)
Diffstat (limited to 'community/vtk/PKGBUILD')
-rw-r--r-- | community/vtk/PKGBUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/community/vtk/PKGBUILD b/community/vtk/PKGBUILD new file mode 100644 index 00000000..e301368f --- /dev/null +++ b/community/vtk/PKGBUILD @@ -0,0 +1,9 @@ +# break cycle with gnuplot on i486 +if [ "$CARCH" = 'i486' ]; then + makedepends=(${makedepends[@]//gnuplot/}) +fi + +# no python-matplotlib on i486 +if [ "$CARCH" = 'i486' ]; then + makedepends=(${makedepends[@]//python-matplotlib/}) +fi |