diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-05-15 15:30:46 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-05-15 15:30:46 -0300 |
commit | 5cf5867b3fdc3287920a88ac8551dcceeba8cef9 (patch) | |
tree | 4d3150faf6c50214e16d682c9dfb7dad0a8ffe9a /gis/grass/grass.install | |
parent | f3da6723ad4a7ec5149daf3d44b6ccdd3ee9c6ef (diff) | |
download | abslibre-5cf5867b3fdc3287920a88ac8551dcceeba8cef9.tar.gz abslibre-5cf5867b3fdc3287920a88ac8551dcceeba8cef9.tar.bz2 abslibre-5cf5867b3fdc3287920a88ac8551dcceeba8cef9.zip |
Starting [gis] repo
Diffstat (limited to 'gis/grass/grass.install')
-rw-r--r-- | gis/grass/grass.install | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gis/grass/grass.install b/gis/grass/grass.install new file mode 100644 index 000000000..878ea0186 --- /dev/null +++ b/gis/grass/grass.install @@ -0,0 +1,26 @@ +## arg 1: the new package version +post_install() { + pkgver=${1%-*} + + # Create symlink for version workaround. + ln -sf /opt/grass-${pkgver} /opt/grass + + echo 'Please relogin for required variables to be set from /etc/profile.d/grass.sh' +} + +## arg 1: the new package version +## arg 2: the old package version +post_upgrade() { + pkgver=${1%-*} + + # Updating symlink for new version + ln -sf /opt/grass-${pkgver} /opt/grass +} + +## arg 1: the old package version +pre_remove() { + # Removing cruft symlink + rm -f /opt/grass +} + +# vim:set ts=2 sw=2 et: |