summarylogtreecommitdiffstats
path: root/fairsoft.install
blob: 84c9da29b2b3dbda0f1a7258ec22affeb8d8cc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
post_install() {
	version=$1
	cd /opt/fairsoft/$version/src/FairSoft
	export version
	./configure.sh ../arch.conf

	echo "Add the following line to your ~/.profile"
	echo "  export SIMPATH=/opt/fairsoft/$version"
}

post_upgrade() {
	version=$1
	cd /opt/fairsoft/$version/src/FairSoft
	export version
	./configure.sh ../arch.conf

	echo "Add the following line to your ~/.profile"
	echo "  export SIMPATH=/opt/fairsoft/$version"
}

pre_remove() {
	:
}

post_remove() {
	:
}