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

26 lines
707 B
Python
Raw Normal View History

from pythonforandroid.recipe import CompiledComponentsPythonRecipe
2017-08-13 03:24:00 +02:00
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 = []
2017-08-13 03:24:00 +02:00
patches = ['locale.patch',
'cross-compile.patch']
def prebuild_arch(self, arch):
2022-12-02 21:15:34 +01:00
super().prebuild_arch(arch)
2017-08-13 03:24:00 +02:00
if not is_darwin():
if '64' in arch.arch:
machine = 'ansi64'
else:
machine = 'ansi32'
self.setup_extra_args = ['--with-machine=' + machine]
recipe = CdecimalRecipe()