1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-09 08:27:18 +00:00

travis: adjust ffmpeg URL

No idea if this is correct.
This commit is contained in:
wm4 2017-10-27 18:13:02 +02:00
parent 4d47805a76
commit 47dca74f03
2 changed files with 3 additions and 7 deletions

View File

@ -32,7 +32,7 @@ matrix:
- os: osx - os: osx
compiler: gcc compiler: gcc
- os: linux - os: linux
env: LIBAV=ffmpeg-stable env: LIBAV=ffmpeg-git
- os: linux - os: linux
compiler: clang compiler: clang

View File

@ -91,13 +91,9 @@ class Libav < TravisDepsBuilder
:action => :git, :action => :git,
:url => "git://git.libav.org/libav.git" :url => "git://git.libav.org/libav.git"
}, },
"ffmpeg-stable" => {
:action => :stable,
:url => 'http://www.ffmpeg.org/releases/ffmpeg-3.2.2.tar.gz'
},
"ffmpeg-git" => { "ffmpeg-git" => {
:action => :git, :action => :git,
:url => "git://github.com/FFmpeg/FFmpeg.git" :url => "git://github.com/mpv-player/ffmpeg-mpv.git"
} }
} }
end end
@ -110,7 +106,7 @@ end
class LibavOsx < Libav class LibavOsx < Libav
def build_map def build_map
{ {
"ffmpeg-stable" => { :action => :package, :url => 'ffmpeg' }, "ffmpeg-git" => { :action => :package, :url => 'ffmpeg' },
} }
end end
end end