view src/sdl_ttf.mk @ 1151:29cfc5b72cd9

package sdl_ttf: fixed upgrade macro
author Mark Brand <mabrand@mabrand.nl>
date Fri, 17 Sep 2010 09:00:36 +0200
parents 336819b3c4cc
children 23b4af02f7ed
line wrap: on
line source

# This file is part of mingw-cross-env.
# See doc/index.html for further information.

# SDL_ttf
PKG             := sdl_ttf
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 2.0.10
$(PKG)_CHECKSUM := 98f6518ec71d94b8ad303a197445e0991850b887
$(PKG)_SUBDIR   := SDL_ttf-$($(PKG)_VERSION)
$(PKG)_FILE     := SDL_ttf-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE  := http://www.libsdl.org/projects/SDL_ttf/
$(PKG)_URL      := http://www.libsdl.org/projects/SDL_ttf/release/$($(PKG)_FILE)
$(PKG)_DEPS     := gcc sdl freetype

define $(PKG)_UPDATE
    wget -q -O- http://hg.libsdl.org/SDL_ttf/tags | \
    grep "release-" | \
    $(SED) -n 's,.*release-\([0-9.]*\)<.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        --host='$(TARGET)' \
        --disable-shared \
        --prefix='$(PREFIX)/$(TARGET)' \
        --with-sdl-prefix='$(PREFIX)/$(TARGET)' \
        --disable-sdltest \
        --with-freetype-prefix='$(PREFIX)/$(TARGET)'
    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef