Created
June 25, 2014 14:49
-
-
Save Ajido/1a9f92ec77e6611ed959 to your computer and use it in GitHub Desktop.
Install FFmpeg on Amazon Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum_repository "atrpms" do | |
baseurl "http://dl.atrpms.net/el6.5-$basearch/atrpms/stable" | |
gpgkey "http://atrpms.net/RPM-GPG-KEY.atrpms" | |
enabled false | |
end | |
yum_repository "centos-base" do | |
baseurl "http://mirror.centos.org/centos/6.5/os/$basearch/" | |
gpgkey "http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6" | |
enabled false | |
end | |
package "ffmpeg" do | |
action :install | |
options "--enablerepo=atrpms --enablerepo=centos-base" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment