diff --git a/handbrake/README.md b/handbrake/README.md new file mode 100644 index 0000000..94813c2 --- /dev/null +++ b/handbrake/README.md @@ -0,0 +1,4 @@ +HandBrake +========= + +This Ansible playbook installs HandBrake, a fully featured and flexible video transcoder implimenting the x.264 codec. \ No newline at end of file diff --git a/handbrake/handbrake.yaml b/handbrake/handbrake.yaml new file mode 100644 index 0000000..9d02efc --- /dev/null +++ b/handbrake/handbrake.yaml @@ -0,0 +1,16 @@ +--- +- hosts: $hosts + user: $user + sudo: yes + vars: + app_name: HandBrake + app_name_pretty: HandBrake + app_url: http://handbrake.fr/rotation.php?file=HandBrake-0.9.8-MacOSX.6_GUI_x86_64.dmg + installer_type: app + install_method: dmg + mount_path: /Volumes/HandBrake-0.9.8-MacOSX.6_GUI_x86_64/ + vars_files: + - ../setup-vars.yaml + tasks: + - include: ../setup.yaml + - include: ../install/$install_method.yaml \ No newline at end of file diff --git a/sample-applications.yaml b/sample-applications.yaml index 79d83f7..35ea811 100644 --- a/sample-applications.yaml +++ b/sample-applications.yaml @@ -10,9 +10,10 @@ # - include: texts/texts.yaml # - include: sublime-text/sublime-text.yaml # - include: sourcetree/sourcetree.yaml -- include: sequel-pro/sequel-pro.yaml +# - include: sequel-pro/sequel-pro.yaml # - include: alfred/alfred.yaml -- include: google-chrome/google-chrome.yaml -- include: brackets/brackets.yaml -- include: trim-enabler/trim-enabler.yaml -- include: iterm/iterm.yaml \ No newline at end of file +# - include: google-chrome/google-chrome.yaml +# - include: brackets/brackets.yaml +# - include: trim-enabler/trim-enabler.yaml +# - include: iterm/iterm.yaml +- include: handbrake/handbrake.yaml \ No newline at end of file