diff options
Diffstat (limited to 'abs/core/aspell/aspell.install')
-rw-r--r-- | abs/core/aspell/aspell.install | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/abs/core/aspell/aspell.install b/abs/core/aspell/aspell.install deleted file mode 100644 index 4bb848e..0000000 --- a/abs/core/aspell/aspell.install +++ /dev/null @@ -1,24 +0,0 @@ -infodir=usr/share/info -filelist=(aspell.info aspell-dev.info) - -post_install() { - echo "==> aspell comes with no default dictionary" - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null - done -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file $infodir/dir 2> /dev/null - done -} |