# HG changeset patch # User Paul Issott # Date 1219440621 0 # Node ID 90c0dfc52798ea678fb35f803c1e9bb9eed7a6da # Parent 3095931a842924185b787a3cf55aa30ba526a69d Add cpulimit (thanks Allan Pinto) diff -r 3095931a8429 -r 90c0dfc52798 cpulimit/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cpulimit/receipt Fri Aug 22 21:30:21 2008 +0000 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="cpulimit" +VERSION="1.1" +CATEGORY="system-tools" +SHORT_DESC="cpulimit is a simple program that attempts to limit the +cpu usage of a process" +MAINTAINER="allan316@gmail.com" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://cpulimit.sourceforge.net" +WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/cpulimit/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/cpulimit $fs/usr/bin +}