diff options
Diffstat (limited to 'system/iotop/iotop.SlackBuild')
-rw-r--r-- | system/iotop/iotop.SlackBuild | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/system/iotop/iotop.SlackBuild b/system/iotop/iotop.SlackBuild index a4b622ecb2..ea429dbc47 100644 --- a/system/iotop/iotop.SlackBuild +++ b/system/iotop/iotop.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=iotop -VERSION=${VERSION:-0.5} +VERSION=${VERSION:-0.6} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -55,11 +55,6 @@ sed -i 's|share/man/man8|man/man8|' setup.py python setup.py install --root=$PKG -# iotop script is placed in sbin directory inside source tarball, also in NEWS -# there's a note that it should be installed to sbin, but setup.py doesn't do -# this, so we'll fix it ourselves. -mv $PKG/usr/bin $PKG/usr/sbin - find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |