homebrew-core/Formula/flake.rb
Katherine Whitlock e59b39f213 flake 0.11
Flake is a faster flac encoder/decoder. It is written in C and is completely opensource.

Closes Homebrew/homebrew#15700.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-27 13:12:36 -07:00

14 lines
372 B
Ruby

require 'formula'
class Flake < Formula
homepage 'http://flake-enc.sourceforge.net'
url "http://downloads.sourceforge.net/project/flake-enc/flake/0.11/flake-0.11.tar.bz2"
sha1 '2dd2276c1f1ba36abb1c305185efeced06abca62'
def install
ENV.j1
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make"
system "make install"
end
end