blob: 85bd90bdbb16b95c6af25d44f73238aca08bdfc6 (
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
|
pkgname=mingw-w64-cgns
_PKGNAME=CGNS
pkgver=4.4.0
pkgrel=2
pkgdesc='Standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations (mingw-w64)'
arch=('any')
url='http://www.cgns.org'
license=('custom')
depends=('mingw-w64-crt' 'mingw-w64-hdf5')
makedepends=('mingw-w64-cmake')
options=('!buildflags' '!strip' 'staticlibs')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/${_PKGNAME}/${_PKGNAME}/archive/v${pkgver}.tar.gz)
sha256sums=('3b0615d1e6b566aa8772616ba5fd9ca4eca1a600720e36eadd914be348925fe2')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
prepare(){
cd "${srcdir}/${_PKGNAME}-${pkgver}"
}
build() {
cd "${srcdir}/${_PKGNAME}-${pkgver}"
for _arch in ${_architectures}; do
mkdir -p build-${_arch} && pushd build-${_arch}
if test "${_arch}" = "x86_64-w64-mingw32"
then
_64bits=ON
else
_64bits=OFF
fi
${_arch}-cmake \
-DCGNS_BUILD_CGNSTOOLS:BOOL=OFF \
-DCGNS_ENABLE_64BIT:BOOL=${_64bits} \
-DCGNS_ENABLE_FORTRAN:BOOL=OFF \
-DCGNS_ENABLE_HDF5:BOOL=ON \
-DCGNS_ENABLE_LEGACY:BOOL=ON \
-DCGNS_ENABLE_SCOPING:BOOL=OFF \
-DCGNS_ENABLE_TESTS:BOOL=OFF \
..
make
popd
done
}
package() {
for _arch in ${_architectures}; do
cd "$srcdir"/${_PKGNAME}-${pkgver}/build-${_arch}
make install DESTDIR="$pkgdir"
rm "$pkgdir"/usr/${_arch}/bin/*.exe
rm "$pkgdir"/usr/${_arch}/bin/*.bat
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a
done
}
|