blob: f595e1022f087c83091d2b473968a7c958909aec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo "Add the following line to your ~/.profile"
echo " export FAIRROOTPATH=/opt/fairroot/<fairroot-version>"
}
post_upgrade() {
:
}
pre_remove() {
:
}
post_remove() {
:
}
|