2007-12-17 09:22:41 +11:00
|
|
|
# Description: Build tool for boost.
|
|
|
|
# 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
|
|
|
|
release=1
|
|
|
|
source=(http://dl.sourceforge.net/sourceforge/boost/boost-jam-$version.tgz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd boost-jam-$version
|
|
|
|
local bindir='bin.linuxx86'
|
|
|
|
./build.sh gcc
|
|
|
|
install -D -m 0755 $bindir/bjam $PKG/usr/bin/bjam
|
|
|
|
}
|
|
|
|
|