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/`
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from kivy_ios.toolchain import Recipe, shprint
|
|
from os.path import join
|
|
import sh
|
|
|
|
|
|
arch_mapper = {'i386': 'darwin-i386-cc',
|
|
'x86_64': 'darwin64-x86_64-cc',
|
|
'armv7': 'ios-cross',
|
|
'arm64': 'ios64-cross'}
|
|
|
|
|
|
class OpensslRecipe(Recipe):
|
|
version = "1.1.1f"
|
|
url = "http://www.openssl.org/source/openssl-{version}.tar.gz"
|
|
libraries = ["libssl.a", "libcrypto.a"]
|
|
include_dir = "include"
|
|
include_per_arch = True
|
|
|
|
def build_arch(self, arch):
|
|
build_env = arch.get_env()
|
|
target = arch_mapper[arch.arch]
|
|
shprint(sh.env, _env=build_env)
|
|
sh.perl(join(self.build_dir, "Configure"),
|
|
target,
|
|
_env=build_env)
|
|
if target.endswith('-cross'):
|
|
with open('Makefile', 'r') as makefile:
|
|
filedata = makefile.read()
|
|
filedata = filedata.replace('$(CROSS_TOP)/SDKs/$(CROSS_SDK)', arch.sysroot)
|
|
with open('Makefile', 'w') as makefile:
|
|
makefile.write(filedata)
|
|
shprint(sh.make, "clean")
|
|
shprint(sh.make, self.ctx.concurrent_make, "build_libs")
|
|
|
|
|
|
recipe = OpensslRecipe()
|