wok view cpufrequtils/receipt @ rev 6525

Up mpc-library (0.8.2) caused by gmp upgrade
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 03 09:20:54 2010 +0200 (2010-10-03)
parents 8989c53558ba
children af022550edde
line source
1 # SliTaz package receipt.
3 PACKAGE="cpufrequtils"
4 VERSION="008"
5 CATEGORY="system-tools"
6 SHORT_DESC="Userspace tools for the kernel cpufreq subsystem."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="sysfsutils linux-cpufreq"
9 BUILD_DEPENDS="libtool gettext sed"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html"
12 WGET_URL="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make LIBTOOL_OPT="--silent --tag=CC" && make DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/share $fs/usr
28 # Remove devel files
29 rm $fs/usr/lib/libcpufreq.*a
30 }