blob: 9ddab57469597da709750f3536aa0dd6629195fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$(eval $(call import.MODULE.defs,ZLIB,zlib))
$(eval $(call import.CONTRIB.defs,ZLIB))
ZLIB.FETCH.url = http://download.handbrake.fr/handbrake/contrib/zlib-1.2.3.tar.gz
ZLIB.EXTRACT.tarbase = zlib
ZLIB.CONFIGURE.args = !sete @dir !env !exe @prefix !extra
ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
ZLIB.CONFIGURE.env.AR = AR="$(AR.exe) rc"
ZLIB.CONFIGURE.env.RANLIB = RANLIB="$(RANLIB.exe)"
ZLIB.CONFIGURE.env.args += !AR !RANLIB
endif
|