diff options
-rw-r--r-- | recipes/qt-gstreamer.recipe | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/qt-gstreamer.recipe b/recipes/qt-gstreamer.recipe new file mode 100644 index 0000000..d81cb46 --- /dev/null +++ b/recipes/qt-gstreamer.recipe @@ -0,0 +1,13 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + + +class Recipe(recipe.Recipe): + version = 'git' + name = 'qt-gstreamer' + licenses = [License.GPL] + btype = BuildType.CMAKE + remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/qt-gstreamer', + 'ylatuya': 'git://github.com/ylatuya/qt-gstreamer.git'} + commit = 'ylatuya/qt5' + configure_options = '-DQT_VERSION=5' + deps = ['boost', 'qt5', 'glib', 'gstreamer', 'gst-plugins-base'] |