diff options
author | Constantine Evans | 2024-05-31 19:19:38 +0100 |
---|---|---|
committer | Constantine Evans | 2024-05-31 19:19:38 +0100 |
commit | 6d7087f7afadc11690b1b30d5b1bdfbf12d3d07f (patch) | |
tree | 3d8c11f1f38b43890214f1e0f5fdf8adef83f142 | |
parent | 190626c3d6bd775e13b92cb1924d609623d9ff4e (diff) | |
download | aur-6d7087f7afadc11690b1b30d5b1bdfbf12d3d07f.tar.gz |
use gcc-12 and cuda-12.2
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ pkgbase = oxdna-cuda-git pkgdesc = DNA/RNA/etc simulator, from lorenzo-rovigatti/oxDNA, with CUDA support and analysis tools. - pkgver = v3.6.1.r18.gdbdc7265 + pkgver = v3.6.1.r28.g16e5d7c8 pkgrel = 1 url = https://github.com/lorenzo-rovigatti/oxDNA arch = x86_64 @@ -8,8 +8,8 @@ pkgbase = oxdna-cuda-git makedepends = git makedepends = cmake makedepends = gsl - makedepends = cuda - makedepends = gcc13 + makedepends = cuda-12.2 + makedepends = gcc12 makedepends = python-build makedepends = python-wheel makedepends = python-installer @@ -6,7 +6,7 @@ pkgdesc="DNA/RNA/etc simulator, from lorenzo-rovigatti/oxDNA, with CUDA support url="https://github.com/lorenzo-rovigatti/oxDNA" -pkgver=v3.6.1.r18.gdbdc7265 +pkgver=v3.6.1.r28.g16e5d7c8 arch=('x86_64') license=('GPL3') provides=('oxdna') @@ -15,7 +15,7 @@ pkgrel=1 depends=('python3' 'python-matplotlib' 'python-scikit-learn' 'python-setuptools' 'ipython') -makedepends=('git' 'cmake' 'gsl' 'cuda' 'gcc13' 'python-build' 'python-wheel' 'python-installer' 'cython' 'python-setuptools-scm') +makedepends=('git' 'cmake' 'gsl' 'cuda-12.2' 'gcc12' 'python-build' 'python-wheel' 'python-installer' 'cython' 'python-setuptools-scm') optdepends=('python-matplotlib: for plotting') options=(!lto) source=("git+https://github.com/lorenzo-rovigatti/oxDNA.git") @@ -31,8 +31,8 @@ build() { cmake -B build -S "oxDNA" \ -DCMAKE_BUILD_TYPE='None' \ -DCMAKE_INSTALL_PREFIX='/usr' \ - -DCMAKE_C_COMPILER='gcc-13' \ - -DCMAKE_CXX_COMPILER='g++-13' \ + -DCMAKE_C_COMPILER='gcc-12' \ + -DCMAKE_CXX_COMPILER='g++-12' \ -Wno-dev \ -DCUDA=ON \ -DPython=ON \ |