blob: fb7e6e5cca0e74dbcd12bbd88cbc69cfbaec4168 (
plain)
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
|
post_install() {
cat <<EOF
To make use of X48 you will need a HP-48 ROM.
In 2000 Hewlett-Packard released the 48SX/GX ROMS to the
public. The roms for the hp48sx and the hp48gx are included in
this package.
The first the time program is run, use either
x48 -rom /usr/share/x48/gxrom -initialize
or
x48 -rom /usr/share/x48/sxrom -initialize
to have X48 place the ROM for the desired emulator in \$HOME/.hp48
for subsequent use.
EOF
}
post_upgrade() {
post_install $1
}
op=$1
shift
$op $*
# vim:set ts=2 sw=2 et:
|