4ec86b7440
This patch makes the upcoming udisks2 version bump patch easier to read, and also fixes the udisks.mk, so it follows Buildroot's package guidelines. Host packages are placed on top of the dependency list, followed by target dependencies. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
679 B
Makefile
33 lines
679 B
Makefile
################################################################################
|
|
#
|
|
# udisks
|
|
#
|
|
################################################################################
|
|
|
|
UDISKS_VERSION = 1.0.5
|
|
UDISKS_SITE = http://hal.freedesktop.org/releases
|
|
UDISKS_LICENSE = GPL-2.0+
|
|
UDISKS_LICENSE_FILES = COPYING
|
|
# For 0002-Fix-systemd-service-file.patch
|
|
UDISKS_AUTORECONF = YES
|
|
|
|
UDISKS_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
dbus \
|
|
dbus-glib \
|
|
libatasmart \
|
|
libgudev \
|
|
lvm2 \
|
|
parted \
|
|
polkit \
|
|
sg3_utils \
|
|
udev
|
|
|
|
UDISKS_CONF_OPTS = --disable-remote-access --disable-man-pages
|
|
|
|
ifeq ($(BR2_PACKAGE_UDISKS_LVM2),y)
|
|
UDISKS_CONF_OPTS += --enable-lvm2
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|