diff options
Diffstat (limited to 'core/wget/wget.install')
-rw-r--r-- | core/wget/wget.install | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/core/wget/wget.install b/core/wget/wget.install deleted file mode 100644 index 8eb6a2c3f..000000000 --- a/core/wget/wget.install +++ /dev/null @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(wget.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file $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 $infodir/dir 2> /dev/null - done -} |