plyer: new recipe

This commit is contained in:
Mathieu Virbel 2015-02-25 13:41:08 +01:00
parent f23f86dfef
commit 00affb6b94

12
recipes/plyer/__init__.py Normal file
View file

@ -0,0 +1,12 @@
# pure-python package, this can be removed when we'll support any python package
from toolchain import PythonRecipe
class PlyerRecipe(PythonRecipe):
version = "master"
url = "https://github.com/kivy/plyer/archive/{version}.zip"
depends = ["python", "pyobjus"]
archs = ["i386"]
recipe = PlyerRecipe()