From 48761f778d7daafe8183b6f78c3191a4d8a77429 Mon Sep 17 00:00:00 2001 From: Filipe Correia Date: Tue, 6 Sep 2016 00:04:08 +0100 Subject: [PATCH] Recipe for libpng. --- recipes/libpng/__init__.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 recipes/libpng/__init__.py diff --git a/recipes/libpng/__init__.py b/recipes/libpng/__init__.py new file mode 100644 index 0000000..7d07c83 --- /dev/null +++ b/recipes/libpng/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +from toolchain import Recipe, shprint +from os.path import join +import sh + +class PngRecipe(Recipe): + version = '1.6.24' + url = 'http://vorboss.dl.sourceforge.net/project/libpng/libpng16/1.6.24/libpng-1.6.24.tar.gz' + depends = ["python"] + library = '.libs/libpng16.a' + + def build_arch(self, arch): + build_env = arch.get_env() + configure = sh.Command(join(self.build_dir, "configure")) + shprint(configure, + "CC={}".format(build_env["CC"]), + "LD={}".format(build_env["LD"]), + "CFLAGS={}".format(build_env["CFLAGS"]), + "LDFLAGS={}".format(build_env["LDFLAGS"]), + "--prefix=/", + "--host={}".format(arch.triple), + "--disable-shared") + shprint(sh.make, "clean") + shprint(sh.make, _env=build_env) + +recipe = PngRecipe() \ No newline at end of file