blob: bf9acce47674d8fbd1168c198f6cceee66f34913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo ""
echo " This package is provided as a workaround because ffsubsync"
echo " doesn't work correctly with the most recent version of"
echo " auditok. In this package, it is installed, together with"
echo " auditok as a Python virtual environment inside the"
echo " directory /usr/share/ffsubsync-venv. All other dependencies"
echo " are taken from the system."
echo ""
}
post_upgrade() {
post_install "$1"
}
|