blob: 9fbdc054fad7fd5503b9bb88b5153198b95b0119 (
plain) (
tree)
|
|
- 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=0.34.1+fruit.2
- 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
|