summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e3fb627f7cab14f9f720920a36eaeb87f5ad692a (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
# Maintainer: Anton Kudelin <kudelin at protonmail dot com>
# Contributor: eolianoe <eolianoe [at] gmail [DoT] com>
# Contributor: Carl Rogers <carl.rogers@gmail.com>
# Contributor: Jed Brown <jed@59A2.org>
# Contributor: Brenden Mervin <bmervin@utk.edu>

pkgname=silo
pkgver=4.10.2
pkgrel=11
pkgdesc="A Mesh and Field I/O Library and Scientific Database"
url="https://wci.llnl.gov/simulation/computer-codes/silo"
arch=('x86_64')
depends=('qt5-base' 'hdf5-openmpi')
makedepends=('gcc-fortran')
license=('BSD')
source=("https://wci.llnl.gov/sites/wci/files/2021-01/$pkgname-$pkgver-bsd.tgz"
        "remove-mpiposix.patch"
        "skip-test.patch"
        "qt5.patch")
sha256sums=('4b901dfc1eb4656e83419a6fde15a2f6c6a31df84edfad7f1dc296e01b20140e'
            '824be92ba71e8d797c5836545c58c2c67de0f296b69e8efd9cb9e8ae206837b8'
            '83e50ccad8477ae7549ae68ab12b180e268e1f28b589b699090dbefb59f57e8b'
            '7928c311e238f4d53176f69b75d8099d786b4526fa81fc6c6f565b04c80d5915')

prepare() {
  cd "$srcdir/$pkgname-$pkgver-bsd"
  patch -p0 < "$srcdir/remove-mpiposix.patch"
  patch -p0 < "$srcdir/skip-test.patch"
  patch -p0 < "$srcdir/qt5.patch"
  sed -i 's@rocket_silo.lo@rocket_silo.lo ../src/libsiloh5.la@' tests/Makefile.in
}

build() {
  cd "$srcdir/$pkgname-$pkgver-bsd"
  ./configure \
            --prefix=/usr \
            --enable-shared \
            --enable-optimization \
            --enable-silex \
            --enable-install-lite-headers \
            --with-x \
            --with-hdf5=/usr/include,/usr/lib \
            --with-Qt-include-dir=/usr/include/qt \
            --with-szlib=/usr/lib \
            --with-zlib=/usr/include,/usr/lib \
            CXXFLAGS="-I/usr/include/qt/QtWidgets $CXXFLAGS -fPIC" \
            FFLAGS="$FFLAGS -fallow-argument-mismatch" \
            LIBS='-L/usr/lib/openmpi -lmpi -lQt5Core -lQt5Gui -lQt5Widgets'
  make
}

check(){
  cd "$srcdir/$pkgname-$pkgver-bsd"
  make check CXXFLAGS="$CXXFLAGS -std=c++98"
}

package(){
  cd "$srcdir/$pkgname-$pkgver-bsd"
  make DESTDIR="$pkgdir" install
  make DESTDIR="$pkgdir" install-html
  install -Dm644 "$srcdir/$pkgname-$pkgver-bsd/docs/Silo.book.pdf" \
    "$pkgdir/usr/share/doc/$pkgname/Silo.book.pdf"
  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}