2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.toolchain import Recipe
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
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
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = SnappyRecipe()
|