summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30e15cc7b017f386f96b906fe70ae1a0219a580c (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
# Maintainer: Andrea Zanoni <andrea dot zanoni at polimi dot it>
pkgname=mbdyn-git
pkgver=r8479.eb3297c34
pkgver() {
	cd "$pkgname"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
pkgrel=1
pkgdesc="The first *free* general purpose Multibody Dynamics analysis software"
arch=('any')
url='www.mbdyn.org'
license=('GPLv2')
depends=(suitesparse netcdf netcdf-cxx)
makedepends=(git autoconf automake gcc-fortran libtool)
optdepends=('ginac: symbolic elements support',
	'lapack: eigenanalysis support',
	'blas-openblas: eigenanalysis support, openBLAS version')
source=("${pkgname}::git+https://public.gitlab.polimi.it/DAER/mbdyn.git#branch=develop")
install=mbdyn.install
sha256sums=('SKIP')
options=(buildflags)

# Note: edit the list of modules to suit your needs
_modules="hfelem"

pkgver() {
	cd ${pkgname}
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
	cd ${srcdir}/${pkgname}
	sh bootstrap.sh
}

build() {
	cd ${srcdir}/${pkgname}
	CPPFLAGS+=" -I/usr/include/suitesparse/"
	LDFLAGS+=" -rdynamic -lsuitesparseconfig"
	./configure \
		--with-module="${_modules}" \
		--prefix=/usr \
		--with-y12=no \
		--with-lapack=yes \
		--enable-python \
		--enable-Werror=no \
		--with-superlu=no \
		--enable-runtime-loading \
		--libexecdir=/usr/lib/${pkgname::-4}
	make -j$(nproc) all
}

package() {
	cd ${srcdir}/${pkgname}
	mkdir -p "${pkgdir}/usr/lib/${pkgname::-4}"
	sudo make install
}