blob: fdea07e83052a09fbef515e7becfb7a22486d295 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Maintainer: Stefan Biereigel <stefan@biereigel.de>
## options
: ${_build_python:=false}
_pkgtype="-git"
# basic info
_pkgname="openems"
pkgbase="$_pkgname${_pkgtype:-}"
pkgver=0.0.36.r46.gfaec0f2
pkgrel=1
pkgdesc="A free and open source EC-FDTD solver"
url="https://github.com/thliebig/openEMS"
license=('GPL-3.0-or-later')
arch=('i686' 'x86_64')
_depends_openems=(
'boost-libs'
'fmt'
'hdf5'
'libpng'
'tinyxml'
'verdict'
'vtk'
# AUR
'csxcad'
'fparser'
)
_depends_python=(
'python'
'python-h5py'
'python-matplotlib'
'python-numpy'
# AUR
'python-csxcad'
)
_makedeps_python=(
'cython'
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
depends=(${_depends_openems[@]})
makedepends=(
'boost'
'cmake'
'fast_float'
'git'
'ninja'
'nlohmann-json'
'openmpi'
)
if [[ "${_build_python::1}" == "t" ]]; then
depends+=(${_depends_python[@]})
makedepends+=(${_makedeps_python[@]})
fi
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+https://github.com/thliebig/openEMS")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 \
| sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
_build_openems() {
local _cmake_options=(
-B build
-S "$_pkgsrc"
-G Ninja
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-Wno-dev
)
cmake "${_cmake_options[@]}"
cmake --build build
DESTDIR="$srcdir/fakeinstall" cmake --install build
}
_build_python-openems() (
[ "${_build_python::1}" != "t" ] && return
cd "$_pkgsrc/python"
export CFLAGS CXXFLAGS LDFLAGS
CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
CFLAGS+=" -I'$srcdir/fakeinstall/usr/include'"
LDFLAGS+=" -L'$srcdir/fakeinstall/usr/lib'"
python -m build --no-isolation --wheel --skip-dependency-check
)
build() {
_build_openems
_build_python-openems
}
_package_openems() {
provides=('openems')
conflicts=('openems')
depends=(
${_depends_openems[@]}
)
mv "$srcdir"/fakeinstall/* "$pkgdir/"
chmod -R u+rwX,go+rX,go-w "$pkgdir/"
}
_package_python-openems() {
pkgdesc+=" - python module"
depends=(
${_depends_python_openems[@]}
'openems'
)
provides=('python-openems')
conflicts=('python-openems')
cd "$_pkgsrc/python"
python -m installer --destdir="$pkgdir" dist/*.whl
}
pkgname=("$_pkgname${_pkgtype:-}")
[[ "${_build_python::1}" == "t" ]] && pkgname+=("python-$_pkgname${_pkgtype:-}")
for _p in "${pkgname[@]}"; do
_q="${_p%${_pkgtype:-}}"
eval "package_$_p() {
$(declare -f _package_$_q)
_package_$_q
}"
done
|