kivy-ios/kivy_ios/recipes/pyasn1/__init__.py

22 lines
760 B
Python
Raw Normal View History

2020-09-25 01:06:37 +02:00
from kivy_ios.toolchain import PythonRecipe, shprint
from os.path import join
import sh, os
class Pyasn1Recipe(PythonRecipe):
version = "0.4.3"
url = "https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz"
2020-09-28 23:29:32 +02:00
depends = ["python"]
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()
2020-09-28 23:29:32 +02:00
dest_dir = join(self.ctx.dist_dir, "root", "python3")
2020-09-25 01:06:37 +02:00
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)
2020-09-28 23:29:32 +02:00
recipe = Pyasn1Recipe()