package/kodi-pvr-octonet: fix json dependency
While creating the initial package file a wrong dependency was chosen.
This package really depends on jsoncpp, not json-for-modern-cpp:
f724c5934c
This bug was found while testing per-package directories.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
(cherry picked from commit 2d8e45289531fda33d1a157dffc60b758d6a8377)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
1a7c36ef60
commit
b33c2d23d3
@@ -1,11 +1,11 @@
|
|||||||
config BR2_PACKAGE_KODI_PVR_OCTONET
|
config BR2_PACKAGE_KODI_PVR_OCTONET
|
||||||
bool "kodi-pvr-octonet"
|
bool "kodi-pvr-octonet"
|
||||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # json-for-modern-cpp
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
|
||||||
select BR2_PACKAGE_JSON_FOR_MODERN_CPP
|
select BR2_PACKAGE_JSONCPP
|
||||||
help
|
help
|
||||||
DigitalDevices Octonet PVR client addon for Kodi
|
DigitalDevices Octonet PVR client addon for Kodi
|
||||||
|
|
||||||
https://github.com/DigitalDevices/pvr.octonet
|
https://github.com/DigitalDevices/pvr.octonet
|
||||||
|
|
||||||
comment "kodi-pvr-octonet needs a toolchain w/ gcc >= 4.9"
|
comment "kodi-pvr-octonet needs a toolchain w/ gcc >= 4.7"
|
||||||
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|
||||||
|
|||||||
@@ -8,6 +8,6 @@ KODI_PVR_OCTONET_VERSION = 4.1.0-2-Matrix
|
|||||||
KODI_PVR_OCTONET_SITE = $(call github,DigitalDevices,pvr.octonet,$(KODI_PVR_OCTONET_VERSION))
|
KODI_PVR_OCTONET_SITE = $(call github,DigitalDevices,pvr.octonet,$(KODI_PVR_OCTONET_VERSION))
|
||||||
KODI_PVR_OCTONET_LICENSE = GPL-2.0+
|
KODI_PVR_OCTONET_LICENSE = GPL-2.0+
|
||||||
KODI_PVR_OCTONET_LICENSE_FILES = LICENSE.md
|
KODI_PVR_OCTONET_LICENSE_FILES = LICENSE.md
|
||||||
KODI_PVR_OCTONET_DEPENDENCIES = json-for-modern-cpp kodi
|
KODI_PVR_OCTONET_DEPENDENCIES = jsoncpp kodi
|
||||||
|
|
||||||
$(eval $(cmake-package))
|
$(eval $(cmake-package))
|
||||||
|
|||||||
Reference in New Issue
Block a user