File: libmpich-dev.postinst

package info (click to toggle)
mpich 3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 72,684 kB
  • ctags: 69,156
  • sloc: ansic: 360,380; perl: 17,453; sh: 16,717; f90: 11,288; xml: 9,855; python: 9,651; cpp: 8,790; fortran: 7,500; makefile: 4,374; csh: 98; ruby: 53; sed: 9; php: 8
file content (50 lines) | stat: -rw-r--r-- 2,195 bytes parent folder | download
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
#!/bin/sh

# This is a template file for libmpich-dev.postinst, since it will be processed
# by debian/rules. The update-alternatives command below needs the path to the
# lib*.so files, which depends on the multiarch triplet. This can be gotten
# from dpkg-architecture, but to avoid dependence on dpkg-dev, we instead
# determine it at package build-time, and include a processed version of this
# file as the libmpich-dev.postinst, where the variable triplet has been replaced
# by its appropriate value, depending on the build host architecture.

set -e

case "$1" in
   configure)
      # Continue below
      ;;
   abort-upgrade|abort-remove|abort-deconfigure)
      exit 0;
      ;;
   *)
      echo "postinst called with unknown argument \`$1'" >&2
      exit 0;
      ;;
esac

echo "DEBUG: postinst in libmpich-dev "

update-alternatives \
	--install /usr/include/mpi mpi /usr/include/mpich 40 \
	--slave /usr/lib/libmpi.so libmpi.so /usr/lib/TRIPLET/libmpich.so \
	--slave /usr/lib/libmpi++.so libmpi++.so /usr/lib/TRIPLET/libmpichcxx.so \
	--slave /usr/lib/libmpif77.so libmpif77.so /usr/lib/TRIPLET/libfmpich.so \
	--slave /usr/lib/libmpif90.so libmpif90.so /usr/lib/TRIPLET/libmpichf90.so \
	--slave /usr/bin/mpicc mpicc /usr/bin/mpicc.mpich \
	--slave /usr/bin/mpic++ mpic++ /usr/bin/mpic++.mpich \
	--slave /usr/bin/mpicxx mpicxx /usr/bin/mpicxx.mpich \
	--slave /usr/bin/mpiCC mpiCC /usr/bin/mpic++.mpich \
	--slave /usr/bin/mpif77 mpif77 /usr/bin/mpif77.mpich \
	--slave /usr/bin/mpif90 mpif90 /usr/bin/mpif90.mpich \
	--slave /usr/share/man/man1/mpicc.1.gz mpicc.1.gz /usr/share/man/man1/mpicc.mpich.1.gz \
	--slave /usr/share/man/man1/mpic++.1.gz mpic++.1.gz /usr/share/man/man1/mpic++.mpich.1.gz \
	--slave /usr/share/man/man1/mpicxx.1.gz mpicxx.1.gz /usr/share/man/man1/mpicxx.mpich.1.gz \
	--slave /usr/share/man/man1/mpiCC.1.gz mpiCC.1.gz /usr/share/man/man1/mpicxx.mpich.1.gz \
	--slave /usr/share/man/man1/mpif77.1.gz mpif77.1.gz /usr/share/man/man1/mpif77.mpich.1.gz \
	--slave /usr/share/man/man1/mpif90.1.gz mpif90.1.gz /usr/share/man/man1/mpif90.mpich.1.gz \
	--slave /usr/lib/TRIPLET/pkgconfig/mpi.pc mpi.pc /usr/lib/TRIPLET/pkgconfig/mpich.pc

#DEBHELPER#

exit 0