Description: Colin is a structural analysis application with a lightweight Interface.
It has been developed by civil engineering students at the university of Innsbruck as an unofficial project. The idea was to create an easy to use structural analysis software for students, in order to provide an easier way to learn the basics of civil engineering.
Some tutorials (in German) can be found on youtube.com: http://www.youtube.com/user/ognop42
Setups for Windows can be found in the download area: http://download.clazzes.org/colin/testing/
Packages for Ubuntu/Debian are available as well in our repository: http://deb.clazzes.org/
When launching from terminal you should add the parameter "-graphicssystem raster" since this paint engine is much more faster than the native X11 one.
We hope it will be useful and that we get some feedback to improve it.
Ok here is a little script doing the build and install
#!/bin/sh
mkdir -p colin-svn-build
cd colin-svn-build
svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/
cd colin
qmake
make
cp -a colin/xdg/colin.desktop /usr/share/applications/
cp -a colin/xdg/*.png /usr/share/pixmaps/
mkdir -p /usr/lib64/colin-1.0
mv colin *.o /usr/lib64/colin-1.0
cd /usr/bin
ln -s /usr/lib64/colin-1.0/colin colin
Just a fix removed colin on line 9 and 10 of previous post
#!/bin/sh
mkdir -p colin-svn-build
cd colin-svn-build
svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/
cd colin
qmake
make
cp -a xdg/colin.desktop /usr/share/applications/
cp -a xdg/*.png /usr/share/pixmaps/
mkdir -p /usr/lib64/colin-1.0
mv colin *.o /usr/lib64/colin-1.0
cd /usr/bin
ln -s /usr/lib64/colin-1.0/colin colin
Ratings & Comments
8 Comments
How to build from svn? I try: qmake make make install and i get "no rules to make install"
How to build from svn? I try: qmake make make install and i get "no rules to make install"
Hi, I never used the possibility to install colin using qmake/make. If I find some time in the next few days I will add it. :)
Ok here is a little script doing the build and install #!/bin/sh mkdir -p colin-svn-build cd colin-svn-build svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/ cd colin qmake make cp -a colin/xdg/colin.desktop /usr/share/applications/ cp -a colin/xdg/*.png /usr/share/pixmaps/ mkdir -p /usr/lib64/colin-1.0 mv colin *.o /usr/lib64/colin-1.0 cd /usr/bin ln -s /usr/lib64/colin-1.0/colin colin
Just a fix removed colin on line 9 and 10 of previous post #!/bin/sh mkdir -p colin-svn-build cd colin-svn-build svn checkout http://svn.clazzes.org/svn/colin/trunk/colin/ cd colin qmake make cp -a xdg/colin.desktop /usr/share/applications/ cp -a xdg/*.png /usr/share/pixmaps/ mkdir -p /usr/lib64/colin-1.0 mv colin *.o /usr/lib64/colin-1.0 cd /usr/bin ln -s /usr/lib64/colin-1.0/colin colin
thanks for this!
and i get colionversion.h file not found. this simple parch --- src/colinversion.cpp 2011-04-03 10:46:05.122086000 +0400 +++ src/colinversion.cpp 2011-10-15 03:01:36.833126225 +0400 @@ -24,7 +24,7 @@ * ***********************************************************/ -#include <colinversion.h> +#include "colinversion.h" const char* ColinVersion() { return "__VERSION__"; // now set in includes.mk
thanks you for this! i changed it in the svn.