2008-09-13 16:10:21 +10:00
|
|
|
# Description: An alternative to make based on Jam.
|
2007-12-17 09:22:41 +11:00
|
|
|
# URL: http://www.boost.org/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
|
|
# Packager: Danny Rawlins, monster dot romster at gmail dot com
|
2007-12-17 09:22:41 +11:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=boost-jam
|
|
|
|
version=3.1.16
|
2008-09-13 16:10:21 +10:00
|
|
|
release=2
|
|
|
|
source=(http://dl.sourceforge.net/sourceforge/boost/boost-jam-$version.tgz
|
|
|
|
boost-jam-misc.patch
|
|
|
|
cflags.patch)
|
2007-12-17 09:22:41 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd boost-jam-$version
|
2008-09-13 16:10:21 +10:00
|
|
|
patch -p 1 -i $SRC/boost-jam-misc.patch
|
|
|
|
patch -p 1 -i $SRC/cflags.patch
|
|
|
|
export CFLAGS="$CFLAGS -fno-strict-aliasing"
|
2007-12-17 09:22:41 +11:00
|
|
|
local bindir='bin.linuxx86'
|
|
|
|
./build.sh gcc
|
2008-09-13 16:10:21 +10:00
|
|
|
install -m 0755 -D $bindir/bjam $PKG/usr/bin/bjam
|
2007-12-17 09:22:41 +11:00
|
|
|
}
|
|
|
|
|