mxe/src/cairo.mk

69 lines
2.6 KiB
Makefile
Raw Normal View History

# Copyright (C) 2009 Volker Grabsch
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject
# to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# cairo
PKG := cairo
$(PKG)_VERSION := 1.8.8
$(PKG)_CHECKSUM := e4b8b219427d1ca3dc95f5f44914dce1ae0c3766
$(PKG)_SUBDIR := cairo-$($(PKG)_VERSION)
$(PKG)_FILE := cairo-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://cairographics.org/
$(PKG)_URL := http://cairographics.org/releases/$($(PKG)_FILE)
$(PKG)_DEPS := gcc zlib libpng fontconfig freetype pixman
define $(PKG)_UPDATE
wget -q -O- 'http://cairographics.org/releases/' | \
grep 'LATEST-cairo-' | \
$(SED) -n 's,.*"LATEST-cairo-\([0-9][^"]*\)".*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
$(SED) 's,^\(Libs:.*\),\1 @CAIRO_NONPKGCONFIG_LIBS@,' -i '$(1)/src/cairo.pc.in'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-gtk-doc \
--disable-test-surfaces \
--disable-gcov \
--disable-xlib \
--disable-xlib-xrender \
--disable-xcb \
--disable-quartz \
--disable-quartz-font \
--disable-quartz-image \
--disable-os2 \
--disable-beos \
--disable-glitz \
--disable-directfb \
--enable-win32 \
--enable-win32-font \
--enable-png \
--enable-ft \
--enable-ps \
--enable-pdf \
--enable-svg \
--disable-pthread \
LIBS="-lmsimg32 `$(TARGET)-pkg-config pixman-1 --libs`"
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef