blob: b48dd1967869df8d9ddd0ab06fb92fd2b6624ade (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|