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

46 lines
1.2 KiB
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 LbryRecipe(PythonRecipe):
2020-09-25 01:06:37 +02:00
version = "v0.81.0"
url = "https://github.com/lbryio/lbry/archive/{version}.tar.gz"
depends = [
"python",
"setuptools",
2020-09-25 01:06:37 +02:00
"aiohttp",
"aioupnp",
"appdirs",
"argparse",
2020-09-25 01:06:37 +02:00
"async_timeout",
"base58",
2020-09-25 01:06:37 +02:00
"chardet",
"coincurve",
"colorama",
2020-09-25 01:06:37 +02:00
"cryptography",
"defusedxml"
"docopt",
"ecdsa",
2020-09-25 01:06:37 +02:00
"hachoir",
"keyring",
2020-09-25 01:06:37 +02:00
"mock",
"msgpack",
"pbkdf2",
2020-09-25 01:06:37 +02:00
"prometheus_client"
"pylru",
"pyyaml",
"six",
]
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")
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)
recipe = LbryRecipe()