blob: c0525fd27f0b248fd08b7d62832397014c4b70c1 (
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
|
# Maintainer: Tobias M. Baust <tobias.baust at tutanota dot com>
# Maintainer: Ruben Di Battista <rubendibattista at gmail dot com>
_pkgname=cantera
pkgname="${_pkgname}-git"
pkgver=3.1.0a4.r137.gafa45f417
pkgrel=1
pkgdesc='suite of tools for kinetics, thermodynamics, and transport processes'
arch=('x86_64')
url='https://cantera.org/'
license=('custom:Cantera Developers'
'custom:Sandia Corporation Contract AC04-94AL85000'
'custom:California Institute of Technology')
depends=('sundials' 'python-numpy' 'openmp' 'yaml-cpp' 'fmt' 'boost-libs')
makedepends=('scons' 'git' 'gcc' 'doxygen' 'cython' 'eigen' 'boost' 'python-pip' 'python-setuptools')
checkdepends=('gtest' 'gmock' 'python-ruamel-yaml' 'python-pytest')
provides=('libcantera_shared.so=2-64')
source=(git+https://github.com/Cantera/cantera.git)
md5sums=('SKIP')
_python_v=$(python -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$_pkgname"
# build cantera
scons -j $(nproc) build \
prefix="$pkgdir/usr" \
debug='n' \
system_eigen='y' \
system_sundials='n' \
sundials_include='/usr/include/sundials' \
googletest='system' \
extra_inc_dirs='/usr/include/eigen3'
# build documentation
scons doxygen
# build cantera samples
scons samples
}
check() {
cd "$_pkgname"
scons -j $(nproc) test
scons test-clean
}
package() {
cd "$_pkgname"
install -Dm644 License.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# install cantera
scons install
# correct namcap warning directory-not-world-executable
chmod 755 "$pkgdir/usr/lib/python${_python_v}/site-packages"
}
|