blob: be3b1c6c0cda3ced41f4f9988cd73aa5877ea056 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
cat <<'EOF'
==> opentrack: X-Plane plugin
The X-Plane plugin was installed to:
/usr/libexec/opentrack/opentrack.xpl
To use it, copy it into your X-Plane plugins directory, e.g.:
cp /usr/libexec/opentrack/opentrack.xpl \
"$HOME/.local/share/Steam/steamapps/common/X-Plane 11/Resources/plugins/opentrack.xpl"
Adjust the X-Plane path accordingly.
EOF
}
post_upgrade() {
post_install
}
|