Merge pull request #209 from filipefigcorreia/libpng-recipe
New recipe for libpng
This commit is contained in:
commit
77d8d52e59
1 changed files with 26 additions and 0 deletions
26
recipes/libpng/__init__.py
Normal file
26
recipes/libpng/__init__.py
Normal file
|
@ -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()
|
Loading…
Reference in a new issue