libcmph formula added

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Travis Cline 2010-08-12 13:34:06 -05:00 committed by Adam Vandenberg
parent 61eef1b515
commit 69d47c304f
1 changed files with 12 additions and 0 deletions

12
Formula/libcmph.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Libcmph <Formula
url 'http://downloads.sourceforge.net/project/cmph/cmph/cmph-0.9/cmph-0.9.tar.gz'
homepage 'http://cmph.sourceforge.net'
md5 '14c17e3058174e9333936caa8e18ed28'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end