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


1.2
date	2007.01.28.17.13.59;	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 versions.
@
text
@#!/bin/bash

PKG=SoQt-1.4.1
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 --with-qt=$HOME/usr/lib/qt3.3
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=SoQt-1.4.0
@

