blob: 0c24987d7577c9325b1ecd3349d26bad157f7926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from cerbero import recipe
class Recipe(recipe.Recipe):
name = 'gdk-pixbuf'
version = '2.24.1'
deps = ['jpeg', 'glib', 'libpng', 'tiff', 'zlib' ]
def prepare(self):
if self.config.target_platform == Platform.WINDOWS:
self.autoreconf = True
|