aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/alac.rb
blob: 47a95b96aa7bc938d29b408a0f4c13de825062fb (plain)
1
2
3
4
5
6
7
8
9
10
11
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'
  sha1 'a620f6293ef2d9490927d21ec341bbeff13eabe8'

  def install
    system "make", "CFLAGS=#{ENV.cflags}", "CC=#{ENV.cc}"
    bin.install 'alac'
  end
end