10 lines
240 B
Python
10 lines
240 B
Python
from toolchain import PythonRecipe
|
|
|
|
class PlyerRecipe(PythonRecipe):
|
|
version = "master"
|
|
url = "https://github.com/kivy/plyer/archive/{version}.zip"
|
|
depends = ["python", "pyobjus"]
|
|
archs = ["x86_64"]
|
|
|
|
|
|
recipe = PlyerRecipe()
|