File: libscotch-dev.install

package info (click to toggle)
scotch 6.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 20,872 kB
  • sloc: ansic: 80,043; makefile: 4,039; fortran: 2,536; yacc: 622; lex: 267; sh: 180
file content (34 lines) | stat: -rwxr-xr-x 1,415 bytes parent folder | download | duplicates (2)
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
#! /bin/sh

SCOTCH_STATIC_LIBS="scotch scotcherr scotcherrexit scotchmetis esmumps"
SCOTCH_LIBS="${SCOTCH_STATIC_LIBS}"

for lib in $SCOTCH_LIBS; do
  echo int/lib/lib${lib}.so /usr/lib/${DEB_HOST_MULTIARCH}
  echo int32/lib/lib${lib}.so /usr/lib/${DEB_HOST_MULTIARCH}/scotch-int32
  echo int64/lib/lib${lib}.so /usr/lib/${DEB_HOST_MULTIARCH}/scotch-int64
  echo long/lib/lib${lib}.so /usr/lib/${DEB_HOST_MULTIARCH}/scotch-long
done

for lib in $SCOTCH_STATIC_LIBS; do
  echo int/lib/lib${lib}.a /usr/lib/${DEB_HOST_MULTIARCH}
  echo int32/lib/lib${lib}.a /usr/lib/${DEB_HOST_MULTIARCH}/scotch-int32
  echo int64/lib/lib${lib}.a /usr/lib/${DEB_HOST_MULTIARCH}/scotch-int64
  echo long/lib/lib${lib}.a /usr/lib/${DEB_HOST_MULTIARCH}/scotch-long
done

echo int/include/esmumps.h    /usr/include/scotch
echo int/include/scotch.h    /usr/include/scotch
echo int/include/scotchf.h    /usr/include/scotch

echo int32/include/esmumps.h    /usr/include/scotch-int32
echo int32/include/scotch.h    /usr/include/scotch-int32
echo int32/include/scotchf.h    /usr/include/scotch-int32

echo int64/include/esmumps.h    /usr/include/scotch-int64
echo int64/include/scotch.h    /usr/include/scotch-int64
echo int64/include/scotchf.h    /usr/include/scotch-int64

echo long/include/esmumps.h    /usr/include/scotch-long
echo long/include/scotch.h    /usr/include/scotch-long
echo long/include/scotchf.h    /usr/include/scotch-long