File: cl-quicklisp.postinst

package info (click to toggle)
quicklisp 1.0-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 112 kB
  • ctags: 156
  • sloc: lisp: 1,287; sh: 14; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 320 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
#!/bin/sh

set -e

case "$1" in
	configure)
		echo "To install Quicklisp in your home directory"
		echo "please read /usr/share/doc/cl-quicklisp/README.Debian"
		;;

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

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

#DEBHELPER#

exit 0