2010-07-31 17:46:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class OpenMesh < Formula
|
2012-02-07 07:50:31 +00:00
|
|
|
url 'http://openmesh.org/fileadmin/openmesh-files/2.1/OpenMesh-2.1.tar.bz2'
|
2011-09-25 01:16:51 +00:00
|
|
|
homepage 'http://openmesh.org'
|
2012-02-07 07:50:31 +00:00
|
|
|
md5 'e28ede60a261b92b7da517be71387b39'
|
2011-09-25 01:16:51 +00:00
|
|
|
head 'http://openmesh.org/svnrepo/OpenMesh/trunk/', :using => :svn
|
2010-07-31 17:46:01 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
2010-07-31 17:46:01 +00:00
|
|
|
depends_on 'qt'
|
|
|
|
depends_on 'glew'
|
|
|
|
|
|
|
|
def install
|
|
|
|
mkdir 'openmesh-build'
|
|
|
|
Dir.chdir 'openmesh-build' do
|
|
|
|
system "cmake .. -DCMAKE_INSTALL_PREFIX='#{prefix}' -DCMAKE_BUILD_TYPE=Release"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
2011-09-25 01:16:51 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system("#{bin}/mconvert", '-help')
|
|
|
|
end
|
2010-07-31 17:46:01 +00:00
|
|
|
end
|
2011-09-25 01:16:51 +00:00
|
|
|
|