head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2007.04.22.14.58.17;	author gvermeul;	state Exp;
branches;
next	1.1;

1.1
date	2006.09.24.04.57.19;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Sync with the latest releases.
@
text
@#!/bin/bash

PKG=Coin-2.4.6
JOBS=$(getconf _NPROCESSORS_ONLN)

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget http://ftp.coin3d.org/coin/src/$PKG.tar.gz
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfz ../SOURCES/$PKG.tar.gz
pushd $PKG
./configure --prefix $HOME/usr/lib/qt3.3 --enable-threads --enable-threadsafe
make -j $JOBS
make install
popd # $PKG
popd # ../BUILD

# Local Variables: ***
# mode: sh ***
# End: ***

@


1.1
log
@Add the build files for Coin3D.
@
text
@d3 1
a3 1
PKG=Coin-2.4.5
@

