blob: 3ddab216d5d7739dfc0c8411d50b22481b8de879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Maintainer: Gao xiang<hughgao01@gmail.com>
# Maintainer: Anton Kudelin <kudelin at protonmail dot com>
pkgname=gamess
pkgver=2019R2
pkgrel=2
pkgdesc="The General Atomic and Molecular Electronic Structure System"
arch=('x86_64')
url="https://www.msg.chem.iastate.edu/gamess/gamess.html"
license=('custom')
depends=('tcsh' 'openblas-lapack' 'python')
makedepends=('python-jinja')
install=${pkgname}.install
# You have to get the package from the official website
# and put into the current directory.
source=("local://gamess-current.tar.gz"
"opt.patch")
sha256sums=('2e12f71210249d379f196ba6a3b479f9fb962de82ae2f1130af9022aba44ddea'
'145c0f1624db736e0d587ec896151a8b33d11d4fe4c6a429c824cdbfe83db4c3')
prepare() {
cd $srcdir/$pkgname
# You may comment out two lines below to let GAMESS choose compiler options.
patch -p1 < $srcdir/opt.patch
msg2 "Compiler options '-O3 -march=native -mno-fma' are enabled by default."
# Uncomment the following line out to use external LAPACK. May be unsafe.
#sed -i "s/dgeev.o dgesvd.o zheev.o//g" lked
}
build() {
cd $srcdir/$pkgname
python bin/create-install-info.py \
--fortran_version=8.2 \
--math=openblas \
--mathlib_path=/usr/lib
make
}
check() {
msg2 "Please, wait for the computation of 47 test examples to finish."
msg2 "It is going to take about 5 min depending on your CPU frequency."
cd $srcdir/$pkgname
# Prepare the launch script "rungms" to testing.
sed -i '/set GMSPATH=/c\set GMSPATH=$PWD' rungms
sed -i '/set SCR=/c\set SCR=\/tmp' rungms
mkdir scr
sed -i '/set USERSCR=/c\set USERSCR=$PWD\/scr' rungms
# Start testing with the use of 1 CPU core.
./runall 00
tests/standard/checktst
rm -r scr
}
package() {
cd $srcdir/$pkgname
# Fix rungms
sed -i '/set GMSPATH=/c\set GMSPATH=/opt/gamess' rungms
sed -i '/set SCR=/c\set SCR=\/tmp' rungms
sed -i '/set USERSCR=/c\set USERSCR=$HOME\/.gamess' rungms
install -dm755 $pkgdir/opt/gamess
install -dm755 $pkgdir/usr/bin
install -m755 *.x $pkgdir/opt/gamess
install -m755 run* $pkgdir/opt/gamess
install -m755 *.DOC $pkgdir/opt/gamess
install -m755 gms-files.csh $pkgdir/opt/gamess
cp -r auxdata machines qmnuc tests tools vb2000 $pkgdir/opt/gamess
ln -sf $pkgdir/opt/gamess/rungms $pkgdir/usr/bin
}
|