Skip to content

Commit 73f5ba8

Browse files
committed
Fix recipe build order for ffpyplayer.
1 parent f326324 commit 73f5ba8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pythonforandroid/recipes/ffmpeg/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ class FFMpegRecipe(Recipe):
1111
version = '2.8.8'
1212
url = 'http://ffmpeg.org/releases/ffmpeg-{version}.tar.bz2'
1313
md5sum = 'afeae3b80b7e7e03db957f33a7ef20d2'
14-
depends = ['openssl', 'ffpyplayer_codecs'] # TODO should be opts_depends
14+
depends = ['sdl2'] # Actually no, but we need this to build correct recipe order
15+
opts_depends = ['openssl', 'ffpyplayer_codecs']
1516
patches = ['patches/fix-libshine-configure.patch']
1617

1718
def should_build(self, arch):

0 commit comments

Comments
 (0)