lbry-android/p4a/pythonforandroid/recipes/snappy/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

11 lines
324 B
Python

from pythonforandroid.toolchain import Recipe
class SnappyRecipe(Recipe):
version = '1.1.3'
url = 'https://github.com/google/snappy/releases/download/{version}/snappy-{version}.tar.gz'
def should_build(self, arch):
# Only download to use in leveldb recipe
return False
recipe = SnappyRecipe()