blob: 1ccca32324e1163afb4e57dcd8054cf45ef6c4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Ecm < Formula
  homepage 'http://www.neillcorlett.com/ecm/'
  url 'http://critical.ch/distfiles/ecm-1.0.tar.gz'
  md5 '16302c139137434c8793cc7938cc7afe'
  def install
    system "#{ENV.cc} -o ecm ecm.c"
    system "#{ENV.cc} -o unecm unecm.c"
    bin.install 'ecm', 'unecm'
  end
end
  |