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>
This commit is contained in:
Katherine Whitlock 2012-10-27 15:30:55 -04:00 committed by Adam Vandenberg
parent 1c4bff34fd
commit e59b39f213

14
Formula/flake.rb Normal file
View file

@ -0,0 +1,14 @@
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