blob: e46f1ed07512a425488981830b7db2b5335cfd5f (
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
78
79
80
81
82
83
84
|
# Maintainer: Gavin Ridley <gavin dot keith dot ridley at gmail dot com>
# Maintainer: Luke Labrie-Cleary <luke dot cleary at copenhagenatomics dot com>
pkgname=openmc-git
pkgver=v0.14.0.r5.g9830efaf2
pkgrel=3
pkgdesc="The OpenMC project aims to provide a fully-featured Monte Carlo particle
transport code based on modern methods."
arch=('x86_64')
url="https://github.com/openmc-dev/openmc"
license=('MIT')
install="post.install"
source=("${pkgname}::git+${url}.git" "openmc.sh")
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
md5sums=('SKIP' '80361c7878efc0539eeba8fd9fe2468a')
depends=(
python-lxml
python-scipy
python-pandas
python-matplotlib
python-uncertainties
python-h5py-openmpi
embree
libxrender
libxcursor
libxft
libxinerama
freecad
glu
openssh
dagmc-git
nuclear-data
python-cad_to_openmc
hdf5
)
makedepends=(
cmake
git
python
python-numpy
python-setuptools
python-build
python-installer
)
provides=("${pkgname%-pkgver}")
build() {
cd $srcdir/${pkgname}
mkdir build && cd build
cmake .. -DOPENMC_USE_DAGMC=ON \
-DDAGMC_ROOT=/opt/DAGMC \
-DOPENMC_USE_MPI=ON \
-DHDF5_PREFER_PARALLEL=ON \
-DCMAKE_INSTALL_PREFIX=/opt/openmc
_ccores=$(nproc)
# check if _ccores is a positive integer, if not, serial build
if [[ "${_ccores}" =~ ^[1-9][0-9]*$ ]]; then
make -j ${_ccores}
else
make
fi
# build python layer
python -m build --wheel --no-isolation ../
}
package() {
cd $srcdir/${pkgname}/build
make DESTDIR="$pkgdir/" install
python -m installer --destdir="$pkgdir" ../dist/*.whl
# make repository available in install location
cp -r $srcdir/${pkgname} $pkgdir/opt/openmc
# make non-standard paths persist
mkdir -p $pkgdir/etc/profile.d
cp $srcdir/openmc.sh $pkgdir/etc/profile.d
chmod 755 $pkgdir/etc/profile.d/openmc.sh
}
|