diff options
Diffstat (limited to 'roles/obs/tasks/mpv.yml')
-rw-r--r-- | roles/obs/tasks/mpv.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/roles/obs/tasks/mpv.yml b/roles/obs/tasks/mpv.yml index 9fbdc05..4120f8c 100644 --- a/roles/obs/tasks/mpv.yml +++ b/roles/obs/tasks/mpv.yml @@ -7,13 +7,14 @@ repo: deb https://non-gnu.uvt.nl/debian {{ ansible_distribution_release }} uvt - name: Install mpv apt: - name: mpv=0.34.1+fruit.2 + name: mpv - name: Download MPVC git: repo: https://github.com/lwilletts/mpvc.git dest: /usr/src/mpvc - name: Install MPVC - make: - chdir: /usr/src/mpvc - target: install - + copy: + src: /usr/src/mpvc/mpvc + dest: /usr/local/bin/mpvc + mode: 0755 + remote_src: true |