comparison src/freetype.mk @ 2610:aa9b01174b60

update package freetype
author Mark Brand <mabrand@mabrand.nl>
date Fri, 15 Jun 2012 13:32:23 +0200
parents 4d0f3a9da57e
children 47558e958113
comparison
equal deleted inserted replaced
2609:dcc2a7e93901 2610:aa9b01174b60
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := freetype 4 PKG := freetype
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_CHECKSUM := 5cb80ab9d369c4e81a2221bcf45adcea2c996b9b 6 $(PKG)_CHECKSUM := 73b2c28fcaf1ff5b8beef3af4c5abe4cb1ecb7dc
7 $(PKG)_SUBDIR := freetype-$($(PKG)_VERSION) 7 $(PKG)_SUBDIR := freetype-$($(PKG)_VERSION)
8 $(PKG)_FILE := freetype-$($(PKG)_VERSION).tar.bz2 8 $(PKG)_FILE := freetype-$($(PKG)_VERSION).tar.bz2
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/freetype/freetype2/$($(PKG)_VERSION)/$($(PKG)_FILE) 9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/freetype/freetype2/$($(PKG)_VERSION)/$($(PKG)_FILE)
10 $(PKG)_DEPS := gcc zlib 10 $(PKG)_DEPS := gcc zlib
11 11
16 endef 16 endef
17 17
18 define $(PKG)_BUILD 18 define $(PKG)_BUILD
19 cd '$(1)' && GNUMAKE=$(MAKE) ./configure \ 19 cd '$(1)' && GNUMAKE=$(MAKE) ./configure \
20 --host='$(TARGET)' \ 20 --host='$(TARGET)' \
21 --build="`config.guess`" \
21 --disable-shared \ 22 --disable-shared \
22 --prefix='$(PREFIX)/$(TARGET)' 23 --prefix='$(PREFIX)/$(TARGET)'
23 $(MAKE) -C '$(1)' -j '$(JOBS)' install 24 $(MAKE) -C '$(1)' -j '$(JOBS)' install
24 endef 25 endef