aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBaptiste Fontaine2015-01-20 10:49:32 +0100
committerMike McQuaid2015-01-20 17:12:10 +0100
commit370cd54a7e1b6b2df8c92b660cdcd88a3caafdf3 (patch)
tree98f5c4273f31f3b2e724509ea7bfdc5bdc6eb79e /Library
parentf9881113c6c963182dbdb16ade9beb5ab0d50ac7 (diff)
downloadhomebrew-370cd54a7e1b6b2df8c92b660cdcd88a3caafdf3.tar.bz2
ecm: urls fixed
Closes #36057. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ecm.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/Library/Formula/ecm.rb b/Library/Formula/ecm.rb
index 8a9c7ec81..94e50ac02 100644
--- a/Library/Formula/ecm.rb
+++ b/Library/Formula/ecm.rb
@@ -1,13 +1,12 @@
-require 'formula'
-
class Ecm < Formula
- homepage 'http://www.neillcorlett.com/ecm/'
- url 'http://critical.ch/distfiles/ecm-1.0.tar.gz'
- sha1 'bfda1031e22b23e3c4d1a713f675de2a9778a421'
+ 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'
+ system ENV.cc, "-o", "ecm", "ecm.c"
+ system ENV.cc, "-o", "unecm", "unecm.c"
+ bin.install "ecm", "unecm"
end
end