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