kivy-ios/recipes/autobahn/__init__.py

27 lines
868 B
Python
Raw Normal View History

from os.path import join
2016-10-14 14:07:10 +02:00
from toolchain import PythonRecipe
from toolchain import shprint
import os
import sh
2016-10-14 14:07:10 +02:00
class AutobahnRecipe(PythonRecipe):
2016-10-14 14:07:10 +02:00
name = "autobahn"
version = "0.16.0"
url = "https://github.com/crossbario/autobahn-python/archive/v{version}.zip"
2016-10-14 14:07:10 +02:00
depends = ["twisted", "six", "txaio"]
def install(self):
arch = list(self.filtered_archs)[0]
build_dir = self.get_build_dir(arch.arch)
os.chdir(build_dir)
hostpython = sh.Command(self.ctx.hostpython)
build_env = arch.get_env()
dest_dir = join(self.ctx.dist_dir, "root", "python")
pythonpath = join(dest_dir, 'lib', 'python2.7', 'site-packages')
build_env['PYTHONPATH'] = pythonpath
args = [hostpython, "setup.py", "install", "--prefix", dest_dir]
shprint(*args, _env=build_env)
recipe = AutobahnRecipe()