diff options
author | Viktor Drobot | 2020-08-25 20:03:26 +0300 |
---|---|---|
committer | Viktor Drobot | 2020-08-25 20:03:26 +0300 |
commit | 13422489ac6a975b6848bfe9400477e6a5a0f73c (patch) | |
tree | e31e8e442ca21dfb8e19bc15ebb81e6844c8a2c2 | |
parent | 686b060913877f06f0909dcd9d52cd7ee6cb04c3 (diff) | |
download | aur-13422489ac6a975b6848bfe9400477e6a5a0f73c.tar.gz |
Fix PLUMED search
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = cp2k pkgdesc = A quantum chemistry and solid state physics software package pkgver = 7.1.0 - pkgrel = 3 + pkgrel = 4 url = https://www.cp2k.org arch = x86_64 license = GPL2 @@ -4,7 +4,7 @@ pkgname=cp2k pkgver=7.1.0 _dbcsrver=2.0.1 -pkgrel=3 +pkgrel=4 # NVIDIA GPU Generation: Kepler, Pascal, or Volta; # please specify one closest to yours or leave unchanged # if CUDA isn't supposed to be used @@ -47,7 +47,7 @@ prepare() { export _arch="basic" export _corenumber=$( grep -c ^processor /proc/cpuinfo ) export _elpaver=$( ls /usr/include | grep elpa | sed 's/elpa_openmp-//g' ) - export _plumed=$( find /usr/lib -maxdepth 1 -type d -name "plumed*" | awk -F'/' '{print $4}' ) + export _plumed=$( find /usr/lib -maxdepth 1 -type d -name "plumed-mpi" | awk -F'/' '{print $4}' ) # Enable additional features if [ $( echo -n $( which nvcc) | tail -c 4 ) == nvcc ] |