56431b6922
- updates all imports to prefix kivy_ios - adds basic `setup.py` file - adds a simple `toolchain.py` to the root folder for compat Makes it possible to install kivy-ios from PyPI: ``` pip install kivy-ios toolchain --help ``` Note the `rebuild_updated_recipes.py` is expected to fail as we moved all the recipes. This is a working, but unperfect iteration that come with limitations we would address in subsequent pull requests, such as: - the new usage is not yet documented - CI is not testing the source distribution creation and install - Continuous Delivery to PyPI is not in place - `toolchain` binary is a bit too generic name - we're still vendoring things under `tools/`
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
from kivy_ios.toolchain import Recipe, shprint
|
|
from os.path import join
|
|
import sh
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class HostOpensslRecipe(Recipe):
|
|
version = "1.1.1f"
|
|
url = "http://www.openssl.org/source/openssl-{version}.tar.gz"
|
|
archs = ["x86_64"]
|
|
|
|
def get_build_env(self):
|
|
build_env = self.ctx.env.copy()
|
|
self.build_env_x86_84 = build_env
|
|
return build_env
|
|
|
|
def build_x86_64(self):
|
|
build_env = self.get_build_env()
|
|
configure = sh.Command(join(self.build_dir, "Configure"))
|
|
shprint(configure,
|
|
"darwin64-x86_64-cc",
|
|
_env=build_env)
|
|
shprint(sh.make, "clean")
|
|
shprint(sh.make, self.ctx.concurrent_make, "build_libs")
|
|
|
|
def install(self):
|
|
sh.mkdir('-p', join(self.ctx.dist_dir, 'hostopenssl'))
|
|
sh.cp('-r', join(self.get_build_dir('x86_64'), 'include'),
|
|
join(self.ctx.dist_dir, 'hostopenssl', 'include'))
|
|
sh.mkdir('-p', join(self.ctx.dist_dir, 'hostopenssl', 'lib'))
|
|
sh.cp(join(self.get_build_dir('x86_64'), 'libssl.a'),
|
|
join(self.ctx.dist_dir, 'hostopenssl', 'lib'))
|
|
sh.cp(join(self.get_build_dir('x86_64'), 'libcrypto.a'),
|
|
join(self.ctx.dist_dir, 'hostopenssl', 'lib'))
|
|
|
|
|
|
recipe = HostOpensslRecipe()
|