summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 94e5fd488dcb28df72f81c180e83043c2a6ef4de (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
# Maintainer: Myles English <myles at rockhead.biz>
# Contributor: Feng Wang <wanng.fenng@gmail.com>
pkgname=trilinos
pkgver=12.6.2
pkgrel=1
pkgdesc="An effort to develop algorithms and enabling technologies within an object-oriented software framework for the solution of large-scale, complex multi-physics engineering and scientific problems."
arch=('i686' 'x86_64')
url="http://trilinos.org"
license=('LGPL3')
depends=('lapack' 'openmpi' 'python2' 'boost')
conflicts=('gtest')
source=(http://trilinos.org/oldsite/download/files/${pkgname}-${pkgver}-Source.tar.bz2)
makedepends=('python2' 'python2-numpy' 'swig' 'gcc' 'gcc-fortran' 'openmpi' 'perl' 'blas' 'lapack' 'cmake')
# gcc-fortran gcc-fortran-multilib
md5sums=('4bcb91234399ada370be73d11e2df403')

build() {
  #export CFLAGS="$CFLAGS -g -O1"
  #export CXXFLAGS="$CXXFLAGS -g -O1"

  cd "$srcdir/$pkgname-$pkgver-Source"

  find ${srcdir}/${pkgname}-${pkgver}-Source -name "*" -type f -exec \
      sed -i 's#\(/usr/bin/env \|/usr/bin/\)python[2-3]*#\1python2#' {} \;

  sed -i 's#SWIG_VERSION_CEILING 2.0.8#SWIG_VERSION_CEILING 3.0.2#' \
	${srcdir}/${pkgname}-${pkgver}-Source/packages/PyTrilinos/CMakeLists.txt

  [[ -e build ]] && rm -rf build
  mkdir build 
  cd build

  cmake .. \
      -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON \
      -DTrilinos_ENABLE_FEI=OFF \
      -DTrilinos_ENABLE_STKClassic=OFF \
      -DTrilinos_ENABLE_SEACAS=OFF     \
      -DTrilinos_ENABLE_Sundance=OFF \
      -DTrilinos_ENABLE_TESTS=OFF \
      -DTrilinos_ENABLE_OpenMP:BOOL=ON \
      -DTPL_ENABLE_MPI:BOOL=ON \
      -DTrilinos_ENABLE_PyTrilinos:BOOL=ON \
      -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 \
      -DCMAKE_INSTALL_PREFIX:PATH=/usr \
      -DTPL_ENABLE_Netcdf=OFF          \
      -DTPL_ENABLE_QT=OFF              \
      -DTPL_ENABLE_GLM=OFF              \
      -DBUILD_SHARED_LIBS:BOOL=ON \
      $EXTRA_ARGS

  make

}

package() {
    cd $srcdir/$pkgname-$pkgver-Source/build
    make install DESTDIR=$pkgdir

    mkdir -p "${pkgdir}/etc/profile.d"
    echo "export TRILINOS_DIR=/usr" > "${pkgdir}/etc/profile.d/trilinos.sh"
    chmod +x "${pkgdir}/etc/profile.d/trilinos.sh"

    # header confilcts with openmpi
#    rm "${pkgdir}/usr/include/mpi.h"
}