wok view cpufrequtils/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 86790a278e70
children 71360a13cd94
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@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://mirrors.edge.kernel.org/pub/linux/utils/kernel/cpufreq/"
11 WGET_URL="https://www.kernel.org/pub/linux/utils/kernel/cpufreq/$TARBALL"
13 DEPENDS="sysfsutils linux-cpufreq"
14 BUILD_DEPENDS="libtool gettext sed"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make LIBTOOL_OPT="--silent --tag=CC" &&
20 make DESTDIR=$DESTDIR mandir=/usr/share/man install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 cp -a $install/usr/share/locale $fs/usr/share
30 }