Merge pull request #90 from Ypnose/master
iotop 0.6 + linux user config file
This commit is contained in:
commit
ec83dd50d1
3 changed files with 12 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'iotop'
|
||||
pkgname=iotop
|
||||
version=0.5
|
||||
version=0.6
|
||||
revision=1
|
||||
build_style=python-module
|
||||
makedepends="python>=2.7"
|
||||
|
@ -9,7 +9,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
|||
license="GPL-2"
|
||||
homepage="http://guichaz.free.fr/iotop"
|
||||
distfiles="http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2"
|
||||
checksum=761b7b34b88a6b4715927f5319cf0b775e15aa70f43c69dcb805b0e49da1a2e9
|
||||
checksum=3adea2a24eda49bbbaeb4e6ed2042355b441dbd7161e883067a02bfc8dcef75b
|
||||
|
||||
iotop_package() {
|
||||
depends="${makedepends}"
|
||||
|
|
|
@ -27,7 +27,11 @@ do_configure() {
|
|||
arch=x86_64
|
||||
fi
|
||||
|
||||
if [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
||||
if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then
|
||||
msg_normal "Detected a custom .config file for your arch, using it.\n"
|
||||
cp -f ${FILESDIR}/${arch}-dotconfig-custom .config
|
||||
make ${makejobs} oldconfig
|
||||
elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
||||
msg_normal "Detected a .config file for your arch, using it.\n"
|
||||
cp -f ${FILESDIR}/${arch}-dotconfig .config
|
||||
make ${makejobs} oldconfig
|
||||
|
|
|
@ -27,7 +27,11 @@ do_configure() {
|
|||
arch=x86_64
|
||||
fi
|
||||
|
||||
if [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
||||
if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then
|
||||
msg_normal "Detected a custom .config file for your arch, using it.\n"
|
||||
cp -f ${FILESDIR}/${arch}-dotconfig-custom .config
|
||||
make ${makejobs} oldconfig
|
||||
elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
||||
msg_normal "Detected a .config file for your arch, using it.\n"
|
||||
cp -f ${FILESDIR}/${arch}-dotconfig .config
|
||||
make ${makejobs} oldconfig
|
||||
|
|
Loading…
Reference in a new issue