summaryrefslogtreecommitdiff
path: root/testing/wget/wget.install
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-12 13:49:26 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-12 13:49:26 +0000
commit5c25d28847bcae8c3c51c1babcb09d36c7fbddba (patch)
treea224617b070fe069b5484c6d6444ca3e3df56443 /testing/wget/wget.install
parent8867b1d4d0601b21618d44d015460739590ca01d (diff)
Thu May 12 13:49:26 UTC 2011
Diffstat (limited to 'testing/wget/wget.install')
-rw-r--r--testing/wget/wget.install20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/wget/wget.install b/testing/wget/wget.install
deleted file mode 100644
index 171533352..000000000
--- a/testing/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
-}