diff options
author | root <root@rshg054.dnsready.net> | 2012-07-23 00:01:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-07-23 00:01:51 +0000 |
commit | 59475c73370c37becae97edfb8eb2fe4d56ef87f (patch) | |
tree | 74197d2d4fb263937551ef47d3becb39585e8991 /testing/flex/flex.install | |
parent | e4d2743138eaca146b1a01a7815facdb3d271d88 (diff) |
Mon Jul 23 00:01:51 UTC 2012
Diffstat (limited to 'testing/flex/flex.install')
-rw-r--r-- | testing/flex/flex.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/flex/flex.install b/testing/flex/flex.install new file mode 100644 index 000000000..5b328c722 --- /dev/null +++ b/testing/flex/flex.install @@ -0,0 +1,22 @@ +infodir=/usr/share/info +filelist=(flex.info{,-1,-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 +} + +# vim:set ts=2 sw=2 et: |