blob: 76e024c56f807aac3192bf2b99024990b1287902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Libcmph < Formula
  homepage 'http://cmph.sourceforge.net'
  url 'http://downloads.sourceforge.net/project/cmph/cmph/cmph-2.0.tar.gz'
  sha1 'eabdd4cd9f9bb2fed6773caac8d91638ad2d02b7'
  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end
  |