Blame view

buildroot/buildroot-2016.08.1/package/cwiid/cwiid.mk 832 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  ################################################################################
  #
  # cwiid
  #
  ################################################################################
  
  CWIID_VERSION = 0.6.00
  CWIID_SOURCE = cwiid-$(CWIID_VERSION).tgz
  CWIID_SITE = http://abstrakraft.org/cwiid/downloads
  CWIID_LICENSE = GPLv2+
  CWIID_LICENSE_FILES = COPYING
  
  CWIID_AUTORECONF = YES
  CWIID_INSTALL_STAGING = YES
  
  CWIID_DEPENDENCIES = host-pkgconf host-bison host-flex bluez_utils
  
  # Disable python support. This disables the 2 following things:
  #   - wminput Python plugin support
  #   - cwiid Python module
  CWIID_CONF_OPTS = --without-python --disable-ldconfig
  
  ifeq ($(BR2_PACKAGE_CWIID_WMGUI),y)
  CWIID_DEPENDENCIES += libgtk2 libglib2
  CWIID_CONF_OPTS += --enable-wmgui
  else
  CWIID_CONF_OPTS += --disable-wmgui
  endif
  
  $(eval $(autotools-package))