Data: add support for colored log files
[platform/upstream/gstreamer.git] / vagrant / gstreamer-git.yml
1 ---
2 - name: Ensure Python gobject-introspection and some helper stuff is installed
3   apt: pkg={{ item }} state=present
4   with_items:
5    - python3-gi
6    - python-gi
7    - autoconf
8    - automake
9    - libtool
10
11 - name: Add multiverse into ubuntu
12   apt_repository: repo="deb http://archive.ubuntu.com/ubuntu saucy multiverse"
13
14 - name: Ensure GStreamer dependencies are installed
15   action: shell apt-get -y update && apt-get -y build-dep gstreamer1.0-tools gir1.2-gstreamer-1.0 gir1.2-gst-plugins-base-1.0 gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav
16
17 - name: Get GStreamer from git
18   git: repo=git://anongit.freedesktop.org/gstreamer/{{ item }} dest=/tmp/{{ item }}
19   with_items:
20    - gstreamer
21    - gst-plugins-base
22    - gst-plugins-good
23    - gst-plugins-ugly
24    - gst-plugins-bad
25    - gst-libav
26
27 - name: Uninstall system gstreamer
28   action: shell apt-get -y remove libgstreamer1.0 gstreamer1.0-plugins-base
29
30 - name: Install gstreamer into a temporary prefix
31   action: shell cd /tmp/{{ item }} ; ./autogen.sh --prefix=/usr && make && make install
32   with_items:
33    - gstreamer
34    - gst-plugins-base
35    - gst-plugins-good
36    - gst-plugins-ugly
37    - gst-plugins-bad
38    - gst-libav