homebrew-core/Formula/gtmess.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

13 lines
381 B
Ruby

require 'formula'
class Gtmess < Formula
homepage 'http://gtmess.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/gtmess/gtmess/0.97/gtmess-0.97.tar.gz'
sha1 '9fbbb85554e7e8834e399e5b1d6869af6e2975bc'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end