File: libquantlib0v5.postinst

package info (click to toggle)
quantlib 1.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,768 kB
  • sloc: cpp: 398,987; makefile: 6,574; python: 214; sh: 150; lisp: 86
file content (25 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (6)
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
#!/bin/sh -e
#
# postinst script for the Debian GNU/Linux libquantlib0v5 package
#
# Written and GPL'ed by Dirk Eddelbuettel <edd@debian.org>   

#DEBHELPER#
ldconfig

case "$1" in

    configure)     
	;;

    upgrade|abort-upgrade|abort-remove|abort-deconfigure)
	;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        ;;

esac

exit 0