Skip to content

Commit 3b20137

Browse files
committed
Add md5sum for deps.
1 parent b2022a0 commit 3b20137

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pythonforandroid/recipes/ffmpeg/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class FFMpegRecipe(Recipe):
1111
version = '2.8.8'
1212
url = 'http://ffmpeg.org/releases/ffmpeg-{version}.tar.bz2'
13+
md5sum = 'afeae3b80b7e7e03db957f33a7ef20d2'
1314
depends = ['openssl', 'ffpyplayer_codecs'] # TODO should be opts_depends
1415
patches = ['patches/fix-libshine-configure.patch']
1516

pythonforandroid/recipes/libshine/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77

88
class LibShineRecipe(Recipe):
9-
version = 'master'
9+
version = 'b403b3e8a41377e0576d834b179a5cc7096ff548' # we need master brnch
1010
url = 'https://github.com/toots/shine/archive/{version}.zip'
11+
md5sum = '24cf9488d06f7acf0a0fbb162cc587ab'
1112

1213
# TODO add should_build(self, arch)
1314

pythonforandroid/recipes/libx264/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77

88
class LibX264Recipe(Recipe):
9-
version = 'last_stable'
10-
url = 'http://mirror.yandex.ru/mirrors/ftp.videolan.org/x264/snapshots/{version}_x264.tar.bz2'
9+
version = 'x264-snapshot-20161210-2245-stable' # using mirror url since can't use ftp
10+
url = 'http://mirror.yandex.ru/mirrors/ftp.videolan.org/x264/snapshots/{version}.tar.bz2'
11+
md5sum = '6bcca94ae1d81ee14236ba9af42135d9'
1112

1213
# TODO add should_build(self, arch)
1314

0 commit comments

Comments
 (0)