wok view cpufrequtils/receipt @ rev 5914

v4l-dvb: break on build error
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 27 14:27:30 2010 +0200 (2010-07-27)
parents d131b698d2e8
children 8989c53558ba
line source
1 # SliTaz package receipt.
3 PACKAGE="cpufrequtils"
4 VERSION="007"
5 CATEGORY="system-tools"
6 SHORT_DESC="Userspace tools for the kernel cpufreq subsystem."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="sysfsutils"
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 }