wok view cpulimit/receipt @ rev 16694

xorg-kbproto: typo in depends
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 23 11:56:36 2014 +0300 (2014-05-23)
parents 0c811a59b200
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="cpulimit"
4 VERSION="1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Limits the cpu usage of a process"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://cpulimit.sourceforge.net"
11 WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/cpulimit/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/cpulimit $fs/usr/bin
27 }