e08f6ee73c
* add / update recipes and build changes for Python 3.6.6 compatibility * include Python 3 apt packages in travis build script * use Python 3.6 in Travis * Enable _blake2 and _sha3 in Python 3. Remove unnecessary files. * change zope.interface version * update cffi version
32 lines
933 B
Python
32 lines
933 B
Python
|
|
import glob
|
|
from pythonforandroid.toolchain import (
|
|
CythonRecipe,
|
|
Recipe,
|
|
current_directory,
|
|
info,
|
|
shprint,
|
|
)
|
|
from os.path import join
|
|
import sh
|
|
|
|
|
|
class MiniupnpcRecipe(CythonRecipe):
|
|
version = '1.9'
|
|
url = 'https://pypi.python.org/packages/55/90/e987e28ed29b571f315afea7d317b6bf4a551e37386b344190cffec60e72/miniupnpc-{version}.tar.gz'
|
|
depends = ['setuptools']
|
|
|
|
call_hostpython_via_targetpython = False
|
|
install_in_hostpython = True
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(MiniupnpcRecipe, self).get_recipe_env(arch)
|
|
|
|
target_python = Recipe.get_recipe('python2', self.ctx).get_build_dir(arch.arch)
|
|
env['PYTHON_ROOT'] = join(target_python, 'python-install')
|
|
env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python3.6'
|
|
env['LDFLAGS'] += ' -L' + env['PYTHON_ROOT'] + '/lib' + ' -lpython3.6m'
|
|
|
|
return env
|
|
|
|
recipe = MiniupnpcRecipe()
|