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

31 lines
804 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.recipe import PythonRecipe
from os.path import join
2017-08-13 03:24:00 +02:00
class ZopeRecipe(PythonRecipe):
name = 'zope'
version = '4.1.3'
2022-12-02 21:15:34 +01:00
url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
2017-08-13 03:24:00 +02:00
depends = []
2017-08-13 03:24:00 +02:00
def get_recipe_env(self, arch):
2022-12-02 21:15:34 +01:00
env = super().get_recipe_env(arch)
2017-08-13 03:24:00 +02:00
# These are in the old zope recipe but seem like they shouldn't actually be necessary
env['LDFLAGS'] = env['LDFLAGS'] + ' -L{}'.format(
self.ctx.get_libs_dir(arch.arch))
env['LDSHARED'] = join(self.ctx.root_dir, 'tools', 'liblink')
2022-12-02 21:15:34 +01:00
return env
2017-08-13 03:24:00 +02:00
def postbuild_arch(self, arch):
2022-12-02 21:15:34 +01:00
super().postbuild_arch(arch)
2017-08-13 03:24:00 +02:00
# Should do some deleting here
2017-08-13 03:24:00 +02:00
recipe = ZopeRecipe()
2022-12-02 21:15:34 +01:00
# FIXME: @mirko liblink & LD