homebrew-core/Formula/libcmph.rb

21 lines
592 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libcmph < Formula
homepage 'http://cmph.sourceforge.net'
url 'https://downloads.sourceforge.net/project/cmph/cmph/cmph-2.0.tar.gz'
sha1 'eabdd4cd9f9bb2fed6773caac8d91638ad2d02b7'
2014-05-01 19:03:29 +00:00
bottle do
cellar :any
2014-10-20 09:26:50 +00:00
revision 1
sha1 "f85df680877127051920003e29e9676e30322157" => :yosemite
sha1 "84d44f39e19ebd4e921a11fb81be175935e2b36f" => :mavericks
sha1 "10c0d6dea19a512b4ff02148bf1f6f60e346c417" => :mountain_lion
2014-05-01 19:03:29 +00:00
end
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end