New formula for CMinpack

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
This commit is contained in:
Brian Gyss 2011-08-27 10:45:42 -07:00 committed by Charlie Sharpsteen
parent 1c2140d43f
commit e4828514b6

14
Formula/cminpack.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Cminpack < Formula
url 'http://devernay.free.fr/hacks/cminpack/cminpack-1.1.3.tar.gz'
homepage 'http://devernay.free.fr/hacks/cminpack/cminpack.html'
md5 '3573b33d498cc1bf3787a86efbd12c3a'
depends_on 'cmake'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end