blob: 0cfc77479e8fd57462954a3ffb8faf74aee34b85 [file] [log] [blame]
Samuel Martin9c47cd52014-01-02 20:00:57 +01001################################################################################
2#
3# cwiid
4#
5################################################################################
6
7CWIID_VERSION = 0.6.00
8CWIID_SOURCE = cwiid-$(CWIID_VERSION).tgz
9CWIID_SITE = http://abstrakraft.org/cwiid/downloads
10CWIID_LICENSE = GPLv2+
11CWIID_LICENSE_FILES = COPYING
12
13CWIID_AUTORECONF = YES
14CWIID_INSTALL_STAGING = YES
15
16CWIID_DEPENDENCIES = host-pkgconf host-bison host-flex bluez_utils
17
18# Disable python support. This disables the 2 following things:
19# - wminput Python plugin support
20# - cwiid Python module
Thomas De Schampheleireaaffd202014-09-27 21:32:44 +020021CWIID_CONF_OPTS = --without-python --disable-ldconfig
Samuel Martin9c47cd52014-01-02 20:00:57 +010022
23ifeq ($(BR2_PACKAGE_CWIID_WMGUI),y)
24CWIID_DEPENDENCIES += libgtk2 libglib2
Thomas De Schampheleireaaffd202014-09-27 21:32:44 +020025CWIID_CONF_OPTS += --enable-wmgui
Samuel Martin9c47cd52014-01-02 20:00:57 +010026else
Thomas De Schampheleireaaffd202014-09-27 21:32:44 +020027CWIID_CONF_OPTS += --disable-wmgui
Samuel Martin9c47cd52014-01-02 20:00:57 +010028endif
29
30$(eval $(autotools-package))