diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-12-27 17:17:37 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-12-27 17:17:37 -0300 |
commit | 0c14c3dd36e1c2f529ffa248383a275cfb21f168 (patch) | |
tree | f844a262139ed9aadefa9707776794927a12b1de /~lukeshu/make-graph/make.install | |
parent | b24bcd7ea54466fae5136027d6b5bd9fb3741012 (diff) | |
parent | cdb44f3dc8b59a656b0dc5568d731bdcb7c9ff60 (diff) |
Merge branch 'master' of ssh://gparabola/abslibre
Diffstat (limited to '~lukeshu/make-graph/make.install')
-rw-r--r-- | ~lukeshu/make-graph/make.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/~lukeshu/make-graph/make.install b/~lukeshu/make-graph/make.install new file mode 100644 index 000000000..6cf8b0dc4 --- /dev/null +++ b/~lukeshu/make-graph/make.install @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(make.info make.info-1 make.info-2) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +} |