mxe/src/fltk.mk

43 lines
1.5 KiB
Makefile
Raw Normal View History

2010-01-16 22:02:02 +00:00
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
2008-11-09 01:25:14 +00:00
# FLTK
PKG := fltk
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.x-r8800
$(PKG)_CHECKSUM := f901184e30fa8a43c12aab30a9cb6fa2510cdf29
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $($(PKG)_SUBDIR).tar.bz2
$(PKG)_WEBSITE := http://www.fltk.org/
$(PKG)_URL := http://ftp.easysw.com/pub/fltk/snapshots/$($(PKG)_FILE)
$(PKG)_DEPS := gcc zlib jpeg libpng pthreads
2008-11-09 01:25:14 +00:00
define $(PKG)_UPDATE
wget -q -O- 'http://www.fltk.org/' | \
$(SED) -n 's,.*>v\([0-9][^<]*\)<.*,\1,p' | \
grep -v '^1\.1\.' | \
2008-11-09 01:25:14 +00:00
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && autoconf
$(SED) -i 's,\$$uname,MINGW,g' '$(1)/configure'
2008-11-09 01:25:14 +00:00
# wine confuses the cross-compiling detection, so set it explicitly
$(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
2008-11-09 01:25:14 +00:00
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-threads \
LIBS='-lws2_32'
2011-04-24 21:22:50 +01:00
# enable exceptions, because disabling them doesn't make any sense on PCs
$(SED) -i 's,-fno-exceptions,,' '$(1)/makeinclude'
2009-02-03 20:48:46 +00:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install DIRS=src LIBCOMMAND='$(TARGET)-ar cr'
2011-05-24 13:38:13 +01:00
ln -sf $(PREFIX)/$(TARGET)/bin/fltk-config $(PREFIX)/bin/$(TARGET)-fltk-config
'$(TARGET)-g++' \
-W -Wall -Werror -pedantic -ansi \
'$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-fltk.exe' \
`$(TARGET)-fltk-config --cxxflags --ldstaticflags`
2008-11-09 01:25:14 +00:00
endef