summaryrefslogtreecommitdiffstats
path: root/roles/obs/tasks/mpv.yml
blob: 4120f8c0e8ab00c531dc48ff7f5a1917c2472207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- name: add apt-key
  apt_key: 
    url: https://non-gnu.uvt.nl/debian/uvt_key.gpg
    state: present
- name: Add repo
  apt_repository:
    repo: deb https://non-gnu.uvt.nl/debian {{ ansible_distribution_release }} uvt
- name: Install mpv
  apt:
    name: mpv
- name: Download MPVC
  git:
    repo: https://github.com/lwilletts/mpvc.git
    dest: /usr/src/mpvc
- name: Install MPVC
  copy:
    src: /usr/src/mpvc/mpvc
    dest: /usr/local/bin/mpvc
    mode: 0755
    remote_src: true