reduce zope_interface recipe

This commit is contained in:
Robert Niederreiter 2016-10-14 13:04:01 +02:00
parent 02e9e08b5a
commit bbd1dadb16

View file

@ -1,22 +1,12 @@
from toolchain import CythonRecipe, shprint
from os.path import join
import sh
from toolchain import CythonRecipe
class ZopeInterfaceRecipe(CythonRecipe):
name = "zope"
version = "4.3.2"
url = "https://github.com/zopefoundation/zope.interface/archive/{version}.zip"
#library = "libzopeinterface.a"
depends = ["python", "host_setuptools"]
cythonize = False
def get_recipe_env(self, arch):
env = super(ZopeInterfaceRecipe, self).get_recipe_env(arch)
#env["CC"] = "{} {}".format(env["CC"], env["CFLAGS"])
return env
def build_arch(self, arch):
super(ZopeInterfaceRecipe, self).build_arch(arch)
recipe = ZopeInterfaceRecipe()