summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bc6451399459ca82796863d6c0493e83c3dd12db (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
pkgname=openmodelica
pkgver=1.17.0
pkgrel=3
pkgdesc="Open-source Modelica-based modeling and simulation environment"
url="https://www.openmodelica.org"
_giturl="https://github.com/OpenModelica/OpenModelica.git"
license=('OSMC-PL')
arch=('x86_64')
depends=('java-environment' 'lapack' 'openscenegraph' 'omniorb' 'libcurl-gnutls'
         'lpsolve' 'boost-libs' 'qt5-webkit' 'qt5-xmlpatterns' 'qt5-svg' 'qt5-tools'
         'expat' 'antlr4-runtime')
makedepends=('gcc-fortran' 'cmake' 'git')
source=("${pkgname}::git+${_giturl}#tag=v${pkgver}")
sha256sums=('SKIP')

prepare() {
        cd "${pkgname}"
        git remote set-url origin ${_giturl}
        git submodule update --force --init --recursive
        # OMCompiler: Dont try to install translations
        git cherry-pick -n 2a39a402d9604a1ce353b0a12574fed5d320be0e
        # Fix build with cmake >= 3.20
        git cherry-pick -n 4f3a50974f0f916efd716809699f18d47f1dbe34
}

build() {
        cd "${pkgname}"
        # See https://github.com/OpenModelica/OpenModelica/issues/7619
        export CXXFLAGS=-std=c++14
        autoreconf -fi
        ./configure --prefix=/usr
        make
}

package() {
        cd "${pkgname}"
        make install DESTDIR=${pkgdir}
        # Correct ownership of files, otherwise FMU export fails
        chmod go+rx "${pkgdir}"/usr/share/omc/runtime/c/fmi/buildproject/config.*
}