mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Some of them were introduced by mass-removal of S = WORKDIR/git assignments; rather than try to fix up (or redo) just these, I've run this sed command over the whole tree: sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc` The rationale is that more than one empty line is wasting vertical screen space, and does nothing for readability. (From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
987 B
BlitzBasic
28 lines
987 B
BlitzBasic
SECTION = "base"
|
|
SUMMARY = "Utilities and scripts for power management"
|
|
DESCRIPTION = "Simple shell command line tools to suspend and hibernate."
|
|
HOMEPAGE = "http://pm-utils.freedesktop.org/wiki/"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://src/pm-pmu.c;beginline=1;endline=22;md5=3c1ddbc54e735fb4a0386e14c78a3147"
|
|
|
|
SRC_URI = "http://pm-utils.freedesktop.org/releases/pm-utils-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "8ed899032866d88b2933a1d34cc75e8ae42dcde20e1cc21836baaae3d4370c0b"
|
|
|
|
inherit pkgconfig autotools manpages
|
|
|
|
PACKAGECONFIG[manpages] = "--enable-doc, --disable-doc, libxslt-native xmlto-native"
|
|
|
|
RDEPENDS:${PN} = "bash"
|
|
|
|
EXTRA_OECONF = "--libdir=${nonarch_libdir}"
|
|
|
|
do_configure:prepend () {
|
|
( cd ${S}; autoreconf -f -i -s )
|
|
}
|
|
|
|
FILES:${PN} += "${nonarch_libdir}/${BPN}/*"
|
|
FILES:${PN}-dbg += "${datadir}/doc/pm-utils/README.debugging"
|
|
FILES:${PN}-dev += "${nonarch_libdir}/pkgconfig/pm-utils.pc"
|