wok view cpulimit/receipt @ rev 1301

Add cpulimit (thanks Allan Pinto)
author Paul Issott <paul@slitaz.org>
date Fri Aug 22 21:30:21 2008 +0000 (2008-08-22)
parents
children 0c811a59b200
line source
1 # SliTaz package receipt.
3 PACKAGE="cpulimit"
4 VERSION="1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="cpulimit is a simple program that attempts to limit the
7 cpu usage of a process"
8 MAINTAINER="allan316@gmail.com"
9 DEPENDS=""
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://cpulimit.sourceforge.net"
12 WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/cpulimit/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/cpulimit $fs/usr/bin
26 }