2024-06-03 19:17:45 -06:00
|
|
|
from pythonforandroid.recipe import CythonRecipe, IncludedFilesBehaviour
|
|
|
|
from pythonforandroid.toolchain import current_directory, shprint
|
|
|
|
from os.path import join
|
|
|
|
import sh
|
|
|
|
|
|
|
|
# class PyCodec2Recipe(IncludedFilesBehaviour, CythonRecipe):
|
|
|
|
class PyCodec2Recipe(CythonRecipe):
|
|
|
|
url = "https://github.com/markqvist/pycodec2/archive/refs/heads/main.zip"
|
|
|
|
# src_filename = "../../../pycodec2"
|
2024-06-29 10:07:48 -06:00
|
|
|
depends = ["setuptools", "numpy", "Cython", "codec2"]
|
2024-06-03 19:17:45 -06:00
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
|
|
def get_recipe_env(self, arch, with_flags_in_cc=True):
|
|
|
|
"""
|
|
|
|
Adds codec2 recipe to include and library path.
|
|
|
|
"""
|
|
|
|
env = super().get_recipe_env(arch, with_flags_in_cc)
|
|
|
|
|
|
|
|
codec2_recipe = self.get_recipe('codec2', self.ctx)
|
|
|
|
env['CFLAGS'] += codec2_recipe.include_flags(arch) +" -l:libcodec2.so"
|
|
|
|
env['LDFLAGS'] += ' -L{}'.format(self.ctx.get_libs_dir(arch.arch))
|
|
|
|
env['LDFLAGS'] += ' -L{}'.format(self.ctx.libs_dir)
|
|
|
|
env['LDFLAGS'] += codec2_recipe.link_dirs_flags(arch)
|
|
|
|
|
|
|
|
return env
|
|
|
|
|
|
|
|
def build_arch(self, arch):
|
|
|
|
super().build_arch(arch)
|
|
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
2024-06-29 14:12:19 -06:00
|
|
|
pass
|
|
|
|
# print(arch.arch)
|
|
|
|
# print(arch)
|
|
|
|
# shprint(sh.Command("pwd"))
|
|
|
|
# shprint(sh.Command("ls"))
|
2024-06-03 19:17:45 -06:00
|
|
|
|
|
|
|
# pe_args = ["--replace-needed", "libcodec2.so.1.2", "libcodec2.so", "build/lib.linux-x86_64-3.11/pycodec2/pycodec2.cpython-311-x86_64-linux-gnu.so"]
|
|
|
|
# shprint(sh.Command("patchelf"), *pe_args)
|
|
|
|
|
|
|
|
# pe_args = ["--replace-needed", "libcodec2.so.1.2", "libcodec2.so", f"../../../../python-installs/sideband/{arch.arch}/pycodec2/pycodec2.cpython-311-x86_64-linux-gnu.so"]
|
|
|
|
# shprint(sh.Command("patchelf"), *pe_args)
|
|
|
|
|
|
|
|
# ../../../../python-installs/sideband/armeabi-v7a/pycodec2/pycodec2.cpython-311-x86_64-linux-gnu.so
|
|
|
|
# sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/pycodec2/armeabi-v7a__ndk_target_24/pycodec2/build/lib.linux-x86_64-3.11/pycodec2/pycodec2.cpython-311-x86_64-linux-gnu.so
|
|
|
|
# sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/python-installs/sideband/armeabi-v7a/pycodec2/pycodec2.cpython-311-x86_64-linux-gnu.so
|
|
|
|
# print("=========================")
|
|
|
|
# input()
|
|
|
|
|
|
|
|
|
|
|
|
def postbuild_arch(self, arch):
|
|
|
|
super().postbuild_arch(arch)
|
|
|
|
|
|
|
|
recipe = PyCodec2Recipe()
|
|
|
|
|
|
|
|
# patchelf --replace-needed libcodec2.so.1.2 libcodec2.so sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/sideband/_python_bundle__arm64-v8a/_python_bundle/site-packages/pycodec2/pycodec2.so
|
|
|
|
# patchelf --replace-needed libcodec2.so.1.2 libcodec2.so sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/sideband/_python_bundle__armeabi-v7a/_python_bundle/site-packages/pycodec2/pycodec2.so
|
|
|
|
|
|
|
|
# patchelf --replace-needed libcodec2.so.1.2 libcodec2.so sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/sideband/_python_bundle__arm64-v8a/_python_bundle/site-packages/pycodec2/pycodec2.so; patchelf --replace-needed libcodec2.so.1.2 libcodec2.so sbapp/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/sideband/_python_bundle__armeabi-v7a/_python_bundle/site-packages/pycodec2/pycodec2.so
|