summaryrefslogtreecommitdiff
path: root/gis/grass/grass.install
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-27 04:47:09 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-27 04:47:09 -0300
commit718ae69bc796d8467d5b36bc008587568cc401e7 (patch)
tree1d0eb2a46f47b45ae4654138724f9ee5f38b004f /gis/grass/grass.install
parent1a26253780ac2b8067e25422bc729cf96375bffd (diff)
downloadabslibre-718ae69bc796d8467d5b36bc008587568cc401e7.tar.gz
abslibre-718ae69bc796d8467d5b36bc008587568cc401e7.tar.bz2
abslibre-718ae69bc796d8467d5b36bc008587568cc401e7.zip
move [gis]/merkaartor to [pcr] and remove unused [gis]
Diffstat (limited to 'gis/grass/grass.install')
-rw-r--r--gis/grass/grass.install26
1 files changed, 0 insertions, 26 deletions
diff --git a/gis/grass/grass.install b/gis/grass/grass.install
deleted file mode 100644
index 878ea0186..000000000
--- a/gis/grass/grass.install
+++ /dev/null
@@ -1,26 +0,0 @@
-## 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: