2015-02-25 13:41:08 +01:00
|
|
|
from toolchain import PythonRecipe
|
|
|
|
|
|
|
|
class PlyerRecipe(PythonRecipe):
|
|
|
|
version = "master"
|
|
|
|
url = "https://github.com/kivy/plyer/archive/{version}.zip"
|
|
|
|
depends = ["python", "pyobjus"]
|
2018-11-10 10:14:39 +01:00
|
|
|
archs = ["x86_64"]
|
2015-02-25 13:41:08 +01:00
|
|
|
|
|
|
|
|
2018-11-10 10:14:39 +01:00
|
|
|
recipe = PlyerRecipe()
|