[go: up one dir, main page]

File: postinst

package info (click to toggle)
acepack 1.3.2.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 148 kB
  • ctags: 351
  • sloc: fortran: 1,359; sh: 28; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 477 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
#!/bin/sh
# 							-*- makefile -*-
# debian/postinst file for the Debian/GNU Linux r-cran-acepack package
# Copyright 2004 by Dirk Eddelbuettel <edd@debian.org>

set -e

#DEBHELPER#

case "$1" in
    configure)
	if test -x /usr/bin/R; then
	    R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
	fi
        ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        ;;
esac


exit 0