From efd9f7ec04768885e373443b5fdcf29ad8b012f8 Mon Sep 17 00:00:00 2001 From: MyungJoo Ham Date: Thu, 7 Mar 2019 10:03:17 +0900 Subject: [PATCH] [Workaround] There is no tensorflow deb in the PPA In Ubuntu PPA, there is tensorflow-dev, not tensorflow, which includes both devel and libraries. As a workaround, make it depends on either of the two. Fixes #1204 Addresses https://github.com/nnsuite/nnstreamer-example/issues/21 Signed-off-by: MyungJoo Ham --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index dd73792..3291a1b 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,7 @@ Description: NNStreamer plugins for Gstreamer Package: nnstreamer-tensorflow Architecture: amd64 arm64 Multi-Arch: same -Depends: nnstreamer, tensorflow, ${shlibs:Depends}, ${misc:Depends} +Depends: nnstreamer, tensorflow | tensorflow-dev, ${shlibs:Depends}, ${misc:Depends} Description: NNStreamer TensorFlow Support This package allows nnstreamer to support tensorflow. Note that users must make sure that they have installed Tensorflow with compatible C-API (recommended to use the same version). However, having different options (e.g., GPU mode) should not affect the compatibility. When we have stable C-API from Tensorflow, we will release corresponding subplugin as well. -- 2.7.4