blob: 5f61ff4ef00247e9924bb7bc2440e6e816b82131 (
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
|
pkgname=openmodelica-omc
pkgver=1.24.0
pkgrel=1
pkgdesc="The Open Source Modelica Suite - OpenModelica Compiler"
arch=('x86_64')
url="https://openmodelica.org"
license=('OSMC-PL')
_giturl="https://github.com/OpenModelica/OpenModelica.git"
groups=(openmodelica)
conflicts=(openmodelica)
depends=('lapack' 'java-environment')
makedepends=('gcc-fortran' 'cmake' 'git' 'boost')
options=('!lto')
source=("git+${_giturl}#tag=v${pkgver}")
sha1sums=('6506a4e8c996de310f267109444f3d1b0e1cc526')
prepare() {
cd "$srcdir/OpenModelica"
git remote set-url origin ${_giturl}
git submodule update --force --init --recursive OMCompiler/3rdParty
# link with shared blas/lapack libs: https://github.com/OpenModelica/OpenModelica/issues/10304
sed -i "s|-Wl,-Bstatic -lSimulationRuntimeFMI \$LDFLAGS \$LD_LAPACK -Wl,-Bdynamic|-Wl,-Bstatic -lSimulationRuntimeFMI -Wl,-Bdynamic \$LDFLAGS \$LD_LAPACK|g" OMCompiler/configure.ac
}
build() {
cd "$srcdir/OpenModelica"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DOM_USE_CCACHE=OFF -DOM_ENABLE_GUI_CLIENTS=OFF -B build .
make -C build
}
package() {
cd "$srcdir/OpenModelica"
make install -C build DESTDIR="${pkgdir}"
rm -r "${pkgdir}"/usr/share/zmq
}
|