summaryrefslogtreecommitdiffstats
path: root/test/grass/grass.install
diff options
context:
space:
mode:
Diffstat (limited to 'test/grass/grass.install')
-rw-r--r--test/grass/grass.install15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/grass/grass.install b/test/grass/grass.install
new file mode 100644
index 000000000..116f57cc6
--- /dev/null
+++ b/test/grass/grass.install
@@ -0,0 +1,15 @@
+post_install() {
+ sed -e '/\/opt\/grass-*/d' -i /etc/ld.so.conf
+ echo '/opt/grass/lib' >> etc/ld.so.conf
+ sbin/ldconfig -r .
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ sed -e '/\/opt\/grass-*\/lib/d' -i /etc/ld.so.conf
+ sbin/ldconfig -r .
+}
+