diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-02 15:42:32 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-04 00:42:52 +0200 |
commit | 2e520e0625309fcb3ae98fe7a5f3abd8cc3693fa (patch) | |
tree | 0c94fe3178310646eb45855dd68327eb0c317eea | |
parent | 1c23714ccaee084431ca74a05d9f3158e5e6d01b (diff) |
Add recipe for qt gstreamer
-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'] |