Skip to content

Commit 7ef857d

Browse files
committed
add snappy recipe;
1 parent 6a28c2e commit 7ef857d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)