summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 221f9d2a25a1a8d9b6f9e30a69b07ed0c4332915 (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
# Maintainer: eolianoe <eolianoe At GoogleMAIL DoT com>
# Contriburor: Mathias Anselmann <mathias.anselmann@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: lainme <lainme993@gmail.com>
# Contributor: Klimov Max <cleemmi@gmail.com>

pkgname=cgns
_PKGNAME=CGNS
pkgver=3.3.1
pkgrel=4
pkgdesc='Standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations'
arch=('i686' 'x86_64')
url='http://www.cgns.org'
license=('custom')
depends=('tk' 'hdf5' 'libxmu' 'glu')
makedepends=('gcc-fortran' 'cmake')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/${_PKGNAME}/${_PKGNAME}/archive/v${pkgver}.tar.gz)
sha256sums=('81093693b2e21a99c5640b82b267a495625b663d7b8125d5f1e9e7aaa1f8d469')

# need to tell cmake when to build 64bit version
if [[ $CARCH == "x86_64" ]]
then
  _64bits=ON
else
  _64bits=OFF
fi

prepare(){
  cd "${srcdir}"

  # Out of source build
  rm -rf -- build
  mkdir -p -- build
}

build() {
  cd "${srcdir}/build"

  cmake \
    -DCGNS_BUILD_CGNSTOOLS:BOOL=ON \
    -DCGNS_BUILD_SHARED:BOOL=ON \
    -DCGNS_ENABLE_64BIT:BOOL=${_64bits} \
    -DCGNS_ENABLE_FORTRAN:BOOL=ON \
    -DCGNS_ENABLE_HDF5:BOOL=ON \
    -DCGNS_ENABLE_LEGACY:BOOL=ON \
    -DCGNS_ENABLE_SCOPING:BOOL=OFF \
    -DCGNS_ENABLE_TESTS:BOOL=ON \
    -DCMAKE_BUILD_TYPE:STRING="Release" \
    -DCMAKE_INSTALL_PREFIX:PATH=/usr \
    -DCMAKE_SKIP_RPATH:BOOL=ON \
    "../${_PKGNAME}-${pkgver}"

  make -j1
}


check() {
  cd "${srcdir}/build"

  make test
}

package() {
  cd "${srcdir}/build"

  make DESTDIR="${pkgdir}" install

  # install license
  install -Dm644 "${srcdir}/${_PKGNAME}-${pkgver}/license.txt" \
    "${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
}