forked from brl/citadel
Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
43 lines
1.4 KiB
BlitzBasic
43 lines
1.4 KiB
BlitzBasic
DESCRIPTION = "UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics. "
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08"
|
|
|
|
DEPENDS = "intltool-native libusb1 libgudev glib-2.0 dbus-glib"
|
|
|
|
# Version 0.99.13
|
|
SRCREV = "0f6cc0a10be22d7ddd684e1cd851e4364a440494"
|
|
SRC_URI = " \
|
|
git://gitlab.freedesktop.org/upower/upower.git;branch=master;protocol=https \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
|
|
inherit autotools pkgconfig gettext gobject-introspection systemd gtk-doc
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
PACKAGECONFIG[idevice] = "--with-idevice,--without-idevice,libimobiledevice libplist"
|
|
PACKAGECONFIG[systemd] = "--with-systemdutildir=${systemd_unitdir} --with-systemdsystemunitdir=${systemd_system_unitdir}, \
|
|
--without-systemdutildir --without-systemdsystemunitdir,systemd"
|
|
|
|
EXTRA_OECONF = " --with-backend=linux"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "upower.service"
|
|
# don't start on boot by default - dbus does that on demand
|
|
SYSTEMD_AUTO_ENABLE = "disable"
|
|
|
|
do_configure:prepend() {
|
|
touch ${S}/ABOUT-NLS
|
|
mkdir -p ${S}/build-aux
|
|
touch ${S}/build-aux/config.rpath
|
|
|
|
#sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am
|
|
#sed -i -e 's: doc : :g' ${S}/Makefile.am
|
|
}
|
|
|
|
RDEPENDS:${PN} += "dbus"
|
|
RRECOMMENDS:${PN} += "pm-utils"
|
|
FILES:${PN} += "${datadir}/dbus-1/ \
|
|
${base_libdir}/udev/* \
|
|
"
|