From 653c8f7e806c6427ca0bdb0015edcb0034fb4a9a Mon Sep 17 00:00:00 2001 From: Katherine Whitlock Date: Sat, 27 Oct 2012 15:30:55 -0400 Subject: [PATCH] flake 0.11 Flake is a faster flac encoder/decoder. It is written in C and is completely opensource. Closes #15700. Signed-off-by: Adam Vandenberg --- Library/Formula/flake.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Library/Formula/flake.rb diff --git a/Library/Formula/flake.rb b/Library/Formula/flake.rb new file mode 100644 index 000000000000..402dd95bfe88 --- /dev/null +++ b/Library/Formula/flake.rb @@ -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