Commit 04cae175 authored by Naumann Andreas's avatar Naumann Andreas Committed by Thomas Petazzoni
Browse files

libevdev: new package



[Thomas: fix license details, improve comment explaining why
 autoreconf is needed.]

Signed-off-by: default avatarAndreas Naumann <anaumann@ultratronik.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent d3539dd5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -707,6 +707,7 @@ source "package/libdaemon/Config.in"
source "package/libelf/Config.in"
source "package/libev/Config.in"
source "package/libevent/Config.in"
source "package/libevdev/Config.in"
source "package/libffi/Config.in"
source "package/libglib2/Config.in"
source "package/libical/Config.in"
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBEVDEV
	bool "libevdev"
	help
	  libevdev is a wrapper library for evdev devices

	  http://freedesktop.org/wiki/Software/libevdev/
+20 −0
Original line number Diff line number Diff line
################################################################################
#
# libevdev
#
################################################################################

LIBEVDEV_VERSION = 0.5
LIBEVDEV_SITE = http://cgit.freedesktop.org/libevdev/snapshot
LIBEVDEV_LICENSE = X11
LIBEVDEV_LICENSE_FILES = COPYING

# Uses PKG_CHECK_MODULES() in configure.ac
LIBEVDEV_DEPENDENCIES = host-pkgconf

# package source code coming from git, so it doesn't have generated
# configure and Makefile.in
LIBEVDEV_AUTORECONF = YES
LIBEVDEV_INSTALL_STAGING = YES

$(eval $(autotools-package))