2012-02-17 10:55:59 +00:00
|
|
|
class Ecm < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Prepare CD image files so they compress better"
|
2015-01-20 09:49:32 +00:00
|
|
|
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"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "1d0d19666f46d9a2fc7e534f52475e80a274e93bdd3c010a75fe833f8188b425"
|
2015-01-20 09:49:32 +00:00
|
|
|
version "1.0"
|
2012-02-17 10:55:59 +00:00
|
|
|
|
|
|
|
def install
|
2015-01-20 09:49:32 +00:00
|
|
|
system ENV.cc, "-o", "ecm", "ecm.c"
|
|
|
|
system ENV.cc, "-o", "unecm", "unecm.c"
|
|
|
|
bin.install "ecm", "unecm"
|
2012-02-17 10:55:59 +00:00
|
|
|
end
|
|
|
|
end
|