b935d49a91
As libgudev recently was split from the main systemd/udev source, this library is now required to build certain packages. This library is only relevant to systemd, as the code it contains is still contained in eudev. [Thomas: - don't show the dependency comment when systemd is not available, since libgudev is anyway useless when you're not using systemd. - fix the license, it's LGPLv2.1+ and not GPLv2+ - remove useless empty lines in the .mk file.] Signed-off-by: Nathaniel Roach <nroach44@gmail.com> Tested-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
513 B
Makefile
16 lines
513 B
Makefile
################################################################################
|
|
#
|
|
# libgudev
|
|
#
|
|
################################################################################
|
|
|
|
LIBGUDEV_VERSION = 230
|
|
LIBGUDEV_SOURCE = libgudev-$(LIBGUDEV_VERSION).tar.xz
|
|
LIBGUDEV_SITE = http://ftp.gnome.org/pub/GNOME/sources/libgudev/$(LIBGUDEV_VERSION)
|
|
LIBGUDEV_INSTALL_STAGING = YES
|
|
LIBGUDEV_DEPENDENCIES = host-pkgconf udev libglib2
|
|
LIBGUDEV_LICENSE = LGPLv2.1+
|
|
LIBGUDEV_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|