libevdev: new package

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

Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Naumann Andreas 2013-12-20 16:05:23 +01:00 committed by Thomas Petazzoni
parent d3539dd53b
commit 04cae175e2
3 changed files with 27 additions and 0 deletions

View file

@ -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"

View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_LIBEVDEV
bool "libevdev"
help
libevdev is a wrapper library for evdev devices
http://freedesktop.org/wiki/Software/libevdev/

View file

@ -0,0 +1,20 @@
################################################################################
#
# 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))