26 lines
868 B
Python
26 lines
868 B
Python
from os.path import join
|
|
from toolchain import PythonRecipe
|
|
from toolchain import shprint
|
|
import os
|
|
import sh
|
|
|
|
|
|
class AutobahnRecipe(PythonRecipe):
|
|
name = "autobahn"
|
|
version = "0.16.0"
|
|
url = "https://github.com/crossbario/autobahn-python/archive/v{version}.zip"
|
|
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()
|