diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-03 10:17:32 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-03 10:17:32 +0100 |
commit | e870acdc8dab25660ea941076debf87e6ef6639e (patch) | |
tree | 3f3e94d8d34bc66d3b56f57c0b2429ec47b5f5f2 /community/plan9port/plan9.install | |
parent | 48b4fc34e4c4877ffd359d3108042b64e0b81f5d (diff) | |
parent | e3f70522f1f35359d9307f478c96dace20a51ca1 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ibus-anthy/PKGBUILD
community/libpaper/PKGBUILD
community/plan9port/PKGBUILD
extra/grantlee/PKGBUILD
extra/vlc/PKGBUILD
Diffstat (limited to 'community/plan9port/plan9.install')
-rw-r--r-- | community/plan9port/plan9.install | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/community/plan9port/plan9.install b/community/plan9port/plan9.install index 97ca74fa6..5c76552f3 100644 --- a/community/plan9port/plan9.install +++ b/community/plan9port/plan9.install @@ -1,12 +1,4 @@ post_install() { - echo "==> Decompressing plan9 man pages" - for i in `find /opt/plan9/man -type f`; do - if [ ${i##*.} = "gz" ]; then -# echo " ${i%%.*}..." - gunzip $i - fi - done - echo "" echo "==> In order to use Plan9 specific apps, run them" echo " as arguments to the '9' script, i.e. '9 date'" @@ -15,16 +7,15 @@ post_install() { source /etc/profile.d/plan9.sh } -pre_upgrade() { - post_remove -} - post_upgrade() { post_install } +pre_upgrade() { + post_remove +} + post_remove() { #we had to unpack them so they won't get removed.... rm -rf /opt/plan9/man } - |