You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
577 B
18 lines
577 B
import os |
|
|
|
from pythonforandroid.recipes.libffi import LibffiRecipe |
|
from pythonforandroid.util import load_source |
|
|
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py')) |
|
|
|
|
|
assert LibffiRecipe._version == "v3.4.2" |
|
assert LibffiRecipe.depends == [] |
|
assert LibffiRecipe.python_depends == [] |
|
|
|
|
|
class LibffiRecipePinned(util.InheritedRecipeMixin, LibffiRecipe): |
|
sha512sum = "d399319efcca375fe901b05722e25eca31d11a4261c6a5d5079480bbc552d4e4b42de2026912689d3b2f886ebb3c8bebbea47102e38a2f6acbc526b8d5bba388" |
|
|
|
|
|
recipe = LibffiRecipePinned()
|
|
|