homebrew-core/Formula/frei0r.rb
Mohak Shah 64d264cc89 frei0r: update source file URL
The previous url was retrieving a zero sized file. The file seems to
have been moved to a different directory. Hence, the url was changed.
Note: It's still on the _same_ server, just a different directory. It's
the same file with the same sha1.

Closes Homebrew/homebrew#37375.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-03-03 21:24:18 -05:00

22 lines
629 B
Ruby

require 'formula'
class Frei0r < Formula
homepage 'http://frei0r.dyne.org'
url 'https://files.dyne.org/frei0r/releases/frei0r-plugins-1.4.tar.gz'
sha1 '7995d06c5412b14fa3b05647084ca9d7a0c84faa'
bottle do
cellar :any
sha1 "dfbdc10c72316e888f6b0ecd3716d57fd7a8d1fc" => :yosemite
sha1 "457dc6f5d0786b960715da5ee5f3e426380c34c3" => :mavericks
sha1 "2b58483d2b4bb690b852674d3319664c91a62276" => :mountain_lion
end
depends_on "autoconf" => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end