2012-02-17 10:55:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ecm < Formula
|
|
|
|
homepage 'http://www.neillcorlett.com/ecm/'
|
|
|
|
url 'http://critical.ch/distfiles/ecm-1.0.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'bfda1031e22b23e3c4d1a713f675de2a9778a421'
|
2012-02-17 10:55:59 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "#{ENV.cc} -o ecm ecm.c"
|
|
|
|
system "#{ENV.cc} -o unecm unecm.c"
|
|
|
|
bin.install 'ecm', 'unecm'
|
|
|
|
end
|
|
|
|
end
|