blob: 64b85285a9a2d34bc6fd1490a892cf4e54a02d45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# ftgl
PKG := ftgl
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1.3-rc5
$(PKG)_CHECKSUM := 8508f26c84001d7bc949246affa03744fa1fd22e
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_WEBSITE := http://sourceforge.net/projects/ftgl/
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/ftgl/FTGL Source/$(subst -,~,$($(PKG)_VERSION))/$($(PKG)_FILE)
$(PKG)_DEPS := freetype
define $(PKG)_UPDATE
$(call SOURCEFORGE_FILES,http://sourceforge.net/projects/ftgl/files/FTGL%20Source/) | \
$(SED) -n 's,.*ftgl-\([0-9][^>]*\)\.tar.*,\1,p' | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && autoconf && ./configure \
--host='$(TARGET)' \
--disable-shared \
--disable-freetypetest \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef
|