aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ecm.rb
blob: 94e50ac02f7d9939d1cb7dbc1be1540c27328407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Ecm < Formula
  homepage "https://web.archive.org/web/20140227165748/http://www.neillcorlett.com/ecm/"
  url "https://web.archive.org/web/20091021035854/http://www.neillcorlett.com/downloads/ecm100.zip"
  sha1 "ec8884b547bebee69fa3d2901dbd076f9a84c2ce"
  version "1.0"

  def install
    system ENV.cc, "-o", "ecm", "ecm.c"
    system ENV.cc, "-o", "unecm", "unecm.c"
    bin.install "ecm", "unecm"
  end
end