37 lines
1.5 KiB
Python
37 lines
1.5 KiB
Python
from pythonforandroid.toolchain import PythonRecipe, shprint, shutil, current_directory
|
|
from os.path import join, exists
|
|
import sh
|
|
|
|
class ApswRecipe(PythonRecipe):
|
|
version = '3.15.0-r1'
|
|
url = 'https://github.com/rogerbinns/apsw/archive/{version}.tar.gz'
|
|
depends = ['sqlite3', 'hostpython2', 'python2', 'setuptools']
|
|
call_hostpython_via_targetpython = False
|
|
site_packages_name = 'apsw'
|
|
|
|
def build_arch(self, arch):
|
|
env = self.get_recipe_env(arch)
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
|
# Build python bindings
|
|
hostpython = sh.Command(self.hostpython_location)
|
|
shprint(hostpython,
|
|
'setup.py',
|
|
'build_ext',
|
|
'--enable=fts4'
|
|
, _env=env)
|
|
# Install python bindings
|
|
super(ApswRecipe, self).build_arch(arch)
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(ApswRecipe, self).get_recipe_env(arch)
|
|
env['PYTHON_ROOT'] = self.ctx.get_python_install_dir()
|
|
env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python2.7' + \
|
|
' -I' + self.get_recipe('sqlite3', self.ctx).get_build_dir(arch.arch)
|
|
# Set linker to use the correct gcc
|
|
env['LDSHARED'] = env['CC'] + ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions'
|
|
env['LDFLAGS'] += ' -L' + env['PYTHON_ROOT'] + '/lib' + \
|
|
' -lpython2.7' + \
|
|
' -lsqlite3'
|
|
return env
|
|
|
|
recipe = ApswRecipe()
|