Add the Apple Lossless Audio Codec decoder formula.
Add a formula for the alac binary from http://craz.net/programs/itunes/alac.html. Closes Homebrew/homebrew#13017. Signed-off-by: Max Howell <mxcl@me.com> Renamed alac.
This commit is contained in:
parent
6700bf017b
commit
6ec51340b4
1 changed files with 12 additions and 0 deletions
12
Formula/alac.rb
Normal file
12
Formula/alac.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
require 'formula'
|
||||
|
||||
class Alac < Formula
|
||||
homepage 'http://craz.net/programs/itunes/alac.html'
|
||||
url 'http://craz.net/programs/itunes/files/alac_decoder-0.2.0.tgz'
|
||||
md5 'cec75c35f010d36e7bed91935b57f2d1'
|
||||
|
||||
def install
|
||||
system "make", "CFLAGS=#{ENV.cflags}", "CC=#{ENV.cc}"
|
||||
bin.install('alac')
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue