summaryrefslogtreecommitdiff
path: root/recipes/libxml2.recipe
blob: 2f41c24ac13a970cdf3d5870eac69a567c84d697 (plain)
1
2
3
4
5
6
7
8
9
10
11
from cerbero import recipe


class Recipe(recipe.Recipe):
    name = 'libxml2'
    version = '2.7.8'
    platform_deps = { Platform.WINDOWS: ['libiconv'] }

    def prepare(self):
        if self.config.target_platform == Platform.WINDOWS:
            self.configure_options = '--without-python'