blob: 32d081c9990c0a7c2bf1b15a573092d0d6ee3534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# arg 1: the new package version
post_install() {
echo ">>> Remember that biber 2.0 should be used with biblatex >= 3.0!"
echo ">>> Get it e.g. from"
echo ">>> http://sourceforge.net/projects/biblatex/files/biblatex-3.0/biblatex-3.0.tds.tgz/download"
echo ">>>"
echo ">>> The biber executable provided by this package sits in"
echo ">>> /usr/local/bin,so as not to conflict with the texlive-bin"
echo ">>> package, which provides a biber executable in /usr/bin as well."
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}
op=$1
shift
$op $*
|