aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/alac.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/alac.rb b/Library/Formula/alac.rb
new file mode 100644
index 000000000..7f2679299
--- /dev/null
+++ b/Library/Formula/alac.rb
@@ -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