aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cminpack.rb
diff options
context:
space:
mode:
authorBrian Gyss2011-08-27 10:45:42 -0700
committerCharlie Sharpsteen2011-08-27 13:19:14 -0700
commitb86d1407260a733b83dd8f927eb9d46eae089ad0 (patch)
tree51706f6ab0fbf2e1395fbbc93907c2662e86a4a4 /Library/Formula/cminpack.rb
parent5aaa2fe1e376fd79536e2aa281e47ef93b404104 (diff)
downloadhomebrew-b86d1407260a733b83dd8f927eb9d46eae089ad0.tar.bz2
New formula for CMinpack
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula/cminpack.rb')
-rw-r--r--Library/Formula/cminpack.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cminpack.rb b/Library/Formula/cminpack.rb
new file mode 100644
index 000000000..e1dfe2c22
--- /dev/null
+++ b/Library/Formula/cminpack.rb
@@ -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