wok annotate iotop/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 16df76e1fc6a
children 83b97236db32
rev   line source
pascal@17074 1 # SliTaz package receipt.
pascal@17074 2
pascal@17074 3 PACKAGE="iotop"
pascal@17074 4 VERSION="0.6"
pascal@17074 5 CATEGORY="system-tools"
pascal@17074 6 SHORT_DESC="Show of behalf of which process is the I/O going on."
pascal@17074 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19678 8 LICENSE="GPL2"
pascal@17074 9 WEB_SITE="http://guichaz.free.fr/iotop"
pascal@17074 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@18077 11 WGET_URL="$WEB_SITE/files/$TARBALL"
pascal@17074 12
pascal@17074 13 DEPENDS="python"
pascal@17074 14 BUILD_DEPENDS="python"
pascal@17074 15
pascal@17074 16 # Rules to configure and make the package.
pascal@17074 17 compile_rules()
pascal@17074 18 {
pascal@17074 19 python setup.py build
pascal@17074 20 python setup.py install --root=$DESTDIR
pascal@17074 21 }
pascal@17074 22
pascal@17074 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17074 24 genpkg_rules()
pascal@17074 25 {
pascal@17074 26 mkdir -p $fs/usr
al@18077 27 cp -a $install/usr/sbin $fs/usr
al@18077 28 cp -a $install/usr/lib $fs/usr
pascal@17074 29 }