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:
parent
1c4bff34fd
commit
e59b39f213
1 changed files with 14 additions and 0 deletions
14
Formula/flake.rb
Normal file
14
Formula/flake.rb
Normal 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
|
Loading…
Reference in a new issue