lbry-android-sdk/p4a/pythonforandroidold/recipes/snappy/__init__.py

14 lines
326 B
Python
Raw Normal View History

2022-12-02 21:15:34 +01:00
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()