blob: 98556a63bcd93fd462fa9e55470b8ff2cf632801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LICENSE = "GPLv2"
DESCRIPTION = "To make access to the Linux kernel cpufreq subsystem easier for users and cpufreq userspace tools, a cpufrequtils package was created"
SRC_URI = "http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-${PV}.tar.bz2"
export CROSS = "${TARGET_PREFIX}"
export LIBTOOL = "${TARGET_PREFIX}libtool --tag cc"
TARGET_CC_ARCH += "${LDFLAGS}"
do_compile() {
oe_runmake -e
}
do_install() {
oe_runmake -e install DESTDIR=${D}
}
|