lbry-android-sdk/p4a/pythonforandroid/recipes/cdecimal/__init__.py

27 lines
740 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.toolchain import CompiledComponentsPythonRecipe
from pythonforandroid.patching import is_darwin
class CdecimalRecipe(CompiledComponentsPythonRecipe):
name = 'cdecimal'
version = '2.3'
url = 'http://www.bytereef.org/software/mpdecimal/releases/cdecimal-{version}.tar.gz'
depends = ['python2']
patches = ['locale.patch',
'cross-compile.patch']
def prebuild_arch(self, arch):
super(CdecimalRecipe, self).prebuild_arch(arch)
if not is_darwin():
if '64' in arch.arch:
machine = 'ansi64'
else:
machine = 'ansi32'
self.setup_extra_args = ['--with-machine=' + machine]
recipe = CdecimalRecipe()