summaryrefslogtreecommitdiff
path: root/recipes/gdk-pixbuf.recipe
blob: d7f6cec179f203320c53fe0b50c19e02da603e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from cerbero import recipe


class Recipe(recipe.Recipe):
    name = 'gdk-pixbuf'
    version = '2.24.1'
    deps = ['jpeg', 'glib', 'libpng', 'tiff']

    def prepare(self):
        from cerbero.config import Platform
        if self.config.target_platform == Platform.WINDOWS:
            self.autoreconf = True
            self.config_sh = './configure lt_cv_deplibs_check_method=pass_all'