summaryrefslogtreecommitdiffstats
path: root/src/boost.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-01-31 05:52:28 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-01-31 05:52:28 (GMT)
commitbf9818cff24e977716f961d0eea97ec0ec08ced8 (patch)
tree8da9c98356b1507304646a9b66798ed9bd45294d /src/boost.mk
parentfece8c2c059898b2c2d9a343046926abcb60f8dd (diff)
downloadmxe-bf9818cff24e977716f961d0eea97ec0ec08ced8.zip
mxe-bf9818cff24e977716f961d0eea97ec0ec08ced8.tar.gz
mxe-bf9818cff24e977716f961d0eea97ec0ec08ced8.tar.bz2
new package: boost (by Andreas Roever)
Diffstat (limited to 'src/boost.mk')
-rw-r--r--src/boost.mk40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/boost.mk b/src/boost.mk
new file mode 100644
index 0000000..b5274d7
--- /dev/null
+++ b/src/boost.mk
@@ -0,0 +1,40 @@
+# Boost C++ Library
+# http://www.boost.org/
+
+PKG := boost
+$(PKG)_VERSION := 1_37_0
+$(PKG)_SUBDIR := boost_$($(PKG)_VERSION)
+$(PKG)_FILE := boost_$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/boost/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc zlib bzip2 expat
+
+define $(PKG)_UPDATE
+ wget -q -O- 'http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041' | \
+ grep 'boost_' | \
+ $(SED) -n 's,.*boost_\([1-9][^>]*\)\.tar.*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ echo 'using gcc : : $(TARGET)-g++ : ;' > '$(1)/user-config.jam'
+ # make the build scrip generate .a library files instead of .lib
+ $(SED) 's,<target-os>windows : lib ;,<target-os>windows : a ;,' -i '$(1)/tools/build/v2/tools/types/lib.jam'
+ # compile boost jam
+ cd '$(1)/tools/jam/src' && ./build.sh
+ cd '$(1)' && tools/jam/src/bin.linuxx86/bjam \
+ -j '$(JOBS)' \
+ --user-config=user-config.jam \
+ target-os=windows \
+ threading=multi \
+ link=static \
+ threadapi=win32 \
+ --without-mpi \
+ --without-python \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --exec-prefix='$(PREFIX)/$(TARGET)/bin' \
+ --libdir='$(PREFIX)/$(TARGET)/lib' \
+ --includedir='$(PREFIX)/$(TARGET)/include' \
+ -sEXPAT_INCLUDE='$(PREFIX)/$(TARGET)/include' \
+ -sEXPAT_LIBPATH='$(PREFIX)/$(TARGET)/lib' \
+ stage install
+endef