Sha256: b32a926f9f6d8307ec5cb9aed48afefada335a9a08a7e3dbff2d673e740c36ac

Contents?: true

Size: 567 Bytes

Versions: 8

Compression:

Stored size: 567 Bytes

Contents

---
# Opus audio decoder and encoder
# 2016-05-21 Changed from using git:// URI to using HTTP
- name: GIT clone | libopus
  git: repo=http://git.opus-codec.org/opus.git
       dest={{ source_dir }}/libopus
      #  depth=1
      #  accept_hostkey=yes

- name: Compile | libopus
  shell: "export PATH=/usr/local/bin/:$PATH && {{ item }}"
  args:
    chdir: "{{ source_dir }}/libopus"
    creates: "{{ bin_dir }}/libopus"
  with_items:
    - autoreconf -fiv
    - ./configure --prefix={{ build_dir }} --disable-shared
    - make
    - make install
    - make distclean

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
abrizer-0.6.0 ansible/roles/ffmpeg/tasks/libopus.yml
abrizer-0.5.0 ansible/roles/ffmpeg/tasks/libopus.yml
abrizer-0.4.0 ansible/roles/ffmpeg/tasks/libopus.yml
abrizer-0.3.0 ansible/roles/ffmpeg/tasks/libopus.yml
abrizer-0.2.0 ansible/roles/ffmpeg/tasks/libopus.yml
abrizer-0.1.0 ansible/roles/ffmpeg/tasks/libopus.yml
video_sprites-0.2.0 ansible/roles/ffmpeg/tasks/libopus.yml
video_sprites-0.1.0 ansible/roles/ffmpeg/tasks/libopus.yml