aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# xbmc-pvr-addons
|
|
#
|
|
################################################################################
|
|
|
|
# This cset is on the branch 'gotham'
|
|
# When XBMC is updated, then this should be updated to the corresponding branch
|
|
XBMC_PVR_ADDONS_VERSION = be12a8da2072e9c3ddad54892df2f85b759d4e9a
|
|
XBMC_PVR_ADDONS_SITE = $(call github,opdenkamp,xbmc-pvr-addons,$(XBMC_PVR_ADDONS_VERSION))
|
|
XBMC_PVR_ADDONS_LICENSE = GPLv3+
|
|
XBMC_PVR_ADDONS_LICENSE_FILES = COPYING
|
|
|
|
# There's no ./configure in the git tree, we need to generate it
|
|
XBMC_PVR_ADDONS_AUTORECONF = YES
|
|
|
|
XBMC_PVR_ADDONS_DEPENDENCIES = boost zlib
|
|
# This really is a runtime dependency, but we need XBMC to be installed
|
|
# first, since we'll install files in XBMC's directories _after_ XBMC has
|
|
# installed its own files
|
|
XBMC_PVR_ADDONS_DEPENDENCIES += xbmc
|
|
|
|
XBMC_PVR_ADDONS_CONF_OPTS = \
|
|
--enable-release \
|
|
--enable-addons-with-dependencies
|
|
|
|
ifeq ($(BR2_PACKAGE_MYSQL),y)
|
|
XBMC_PVR_ADDONS_CONF_OPTS += --enable-mysql
|
|
XBMC_PVR_ADDONS_DEPENDENCIES += mysql
|
|
else
|
|
XBMC_PVR_ADDONS_CONF_OPTS += --disable-mysql
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|