homebrew-core/Formula/frei0r.rb

16 lines
409 B
Ruby
Raw Normal View History

require 'formula'
class Frei0r < Formula
homepage 'http://frei0r.dyne.org'
url 'https://files.dyne.org/.xsend.php?file=frei0r/releases/frei0r-plugins-1.4.tar.gz'
sha1 '7995d06c5412b14fa3b05647084ca9d7a0c84faa'
2014-03-16 23:53:46 +00:00
depends_on "autoconf" => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end