mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
c61dc077bb
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
38 lines
1.0 KiB
BlitzBasic
38 lines
1.0 KiB
BlitzBasic
DESCRIPTION = "To make access to the Linux kernel cpufreq subsystem easier for users and cpufreq userspace tools, a cpufrequtils package was created"
|
|
|
|
inherit gettext
|
|
|
|
DEPENDS = "libtool-cross"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
SRCREV = "a2f0c39d5f21596bb9f5223e895c0ff210b265d0"
|
|
# SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/cpufreq/cpufrequtils.git
|
|
|
|
SRC_URI = "git://github.com/emagii/cpufrequtils.git \
|
|
file://0001-dont-unset-cflags.patch \
|
|
"
|
|
|
|
EXTRA_OEMAKE:append = " ${@['', 'NLS=false']['${USE_NLS}' == 'no']} "
|
|
|
|
PR = "r5"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
|
|
EXTRA_OEMAKE = "V=1 CROSS=${TARGET_PREFIX} LIBTOOL='${HOST_SYS}-libtool --tag cc' STRIPCMD=echo 'CP=cp'"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake -e install DESTDIR=${D}
|
|
rm -f ${D}${libdir}/libcpufreq.so.0 ${D}${libdir}/libcpufreq.so
|
|
ln -s libcpufreq.so.0.0.0 ${D}${libdir}/libcpufreq.so.0
|
|
ln -s libcpufreq.so.0.0.0 ${D}${libdir}/libcpufreq.so
|
|
}
|
|
|