mtdev2tuio: new package

mtdev2tuio is a simple application for converting touch events
to the standart TUIO 1.1 protocol.

https://github.com/olivopaolo/mtdev2tuio

[thomas.petazzoni@free-electrons.com: use TARGET_CONFIGURE_OPTS, fix
indentation, add dependency on thread support in toolchain]

Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Stephan Hoffmann 2012-08-30 04:56:38 +02:00 committed by Thomas Petazzoni
parent fa6e224e58
commit dafa32b3bd
3 changed files with 43 additions and 0 deletions

View File

@ -469,6 +469,7 @@ source "package/libtpl/Config.in"
source "package/liburcu/Config.in"
source "package/linux-pam/Config.in"
source "package/lttng-libust/Config.in"
source "package/mtdev2tuio/Config.in"
source "package/orc/Config.in"
source "package/poco/Config.in"
source "package/protobuf/Config.in"

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_MTDEV2TUIO
bool "mtdev2tuio"
select BR2_PACKAGE_LIBLO
select BR2_PACKAGE_MTDEV
depends on BR2_TOOLCHAIN_HAS_THREADS # liblo
help
mtdev2tuio is a simple application for converting touch
events captured from libmtdev to TUIO 1.1
https://github.com/olivopaolo/mtdev2tuio
comment "mtdev2tuio requires thread support in toolchain"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,29 @@
#############################################################
#
# mtdev2tuio
#
#############################################################
MTDEV2TUIO_VERSION = e1e7378d86
MTDEV2TUIO_SITE = git://github.com/olivopaolo/mtdev2tuio.git
MTDEV2TUIO_DEPENDENCIES = mtdev liblo
MTDEV2TUIO_LICENSE = GPLv3+
MTDEV2TUIO_LICENSE_FILES = COPYING
# mtdev2tuio Makefile misuses $(LD) as gcc, so we need to override LD
# here.
define MTDEV2TUIO_BUILD_CMDS
$(MAKE) \
$(TARGET_CONFIGURE_OPTS) \
LD="$(TARGET_CC)" \
-C $(@D)
endef
define MTDEV2TUIO_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/mtdev2tuio $(TARGET_DIR)/usr/bin/mtdev2tuio
endef
define MTDEV2TUIO_CLEAN_CMDS
$(MAKE) -C $(@D) clean
endef
$(eval $(generic-package))