We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a28c2e commit 7ef857dCopy full SHA for 7ef857d
pythonforandroid/recipes/snappy/__init__.py
@@ -0,0 +1,11 @@
1
+from pythonforandroid.toolchain import Recipe
2
+
3
+class SnappyRecipe(Recipe):
4
+ version = '1.1.3'
5
+ url = 'https://github.com/google/snappy/releases/download/{version}/snappy-{version}.tar.gz'
6
7
+ def should_build(self, arch):
8
+ # Only download to use in leveldb recipe
9
+ return False
10
11
+recipe = SnappyRecipe()
0 commit comments