0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02: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
compiler: gcc
- os: linux
env: LIBAV=ffmpeg-stable
env: LIBAV=ffmpeg-git
- os: linux
compiler: clang

View File

@ -91,13 +91,9 @@ class Libav < TravisDepsBuilder
:action => :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" => {
:action => :git,
:url => "git://github.com/FFmpeg/FFmpeg.git"
:url => "git://github.com/mpv-player/ffmpeg-mpv.git"
}
}
end
@ -110,7 +106,7 @@ end
class LibavOsx < Libav
def build_map
{
"ffmpeg-stable" => { :action => :package, :url => 'ffmpeg' },
"ffmpeg-git" => { :action => :package, :url => 'ffmpeg' },
}
end
end