lbry-android/p4a/pythonforandroid/recipes/cdecimal/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

26 lines
740 B
Python

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()